mirror of
https://github.com/joomla-extensions/weblinks.git
synced 2024-11-16 09:37:08 +00:00
31 lines
836 B
PHP
31 lines
836 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
|
|
*/
|
|
|
|
use \AcceptanceTester;
|
|
|
|
class InstallWeblinksCest
|
|
{
|
|
public function installJoomla(AcceptanceTester $I)
|
|
{
|
|
$I->am('Administrator');
|
|
$I->installJoomla();
|
|
$I->doAdministratorLogin();
|
|
$I->setErrorReportingToDevelopment();
|
|
}
|
|
|
|
// tests
|
|
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($path . 'src/com_weblinks/');
|
|
$I->doAdministratorLogout();
|
|
}
|
|
} |