30
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-05-28 20:20:47 +00:00
weblinks/tests/acceptance/install/InstallWeblinksCest.php
2015-10-31 19:01:21 +01:00

33 lines
882 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->setErrorReportingToDevelopment();
}
/**
* @depends installJoomla
*/
public function installWeblinks(\AcceptanceTester $I)
{
$I->doAdministratorLogin();
$I->comment('get Weblinks repository folder from acceptance.suite.yml (see _support/AcceptanceHelper.php)');
$path = $I->getConfiguration('repo_folder');
$I->installExtensionFromFolder(rtrim($path, "/") . '/src/com_weblinks/');
$I->doAdministratorLogout();
}
}