weblinks/tests/acceptance/install/InstallWeblinksCest.php

34 lines
938 B
PHP

<?php
/**
* @package Joomla.Administrator
* @subpackage com_weblinks
*
* @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
class InstallWeblinksCest
{
public function installJoomla(\AcceptanceTester $I)
{
$I->am('Administrator');
$I->installJoomlaRemovingInstallationFolder();
$I->doAdministratorLogin();
$I->disableStatistics();
$I->setErrorReportingToDevelopment();
}
/**
* @depends installJoomla
*/
public function installWeblinks(\AcceptanceTester $I)
{
$I->comment('get Weblinks repository folder from acceptance.suite.yml (see _support/AcceptanceHelper.php)');
$I->doAdministratorLogin();
// URL where the package file to install is located (mostly the same as joomla-cms)
$I->installExtensionFromFileUpload('pkg-weblinks-current.zip');
$I->doAdministratorLogout();
}
}