30
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-06-03 06:50:49 +00:00
weblinks/tests/acceptance/01-InstallWeblinksCest.php
javier gomez 346a956e06 Update the tests to match changes in joomla/joomla-cms#7490
The pull  https://github.com/joomla/joomla-cms/pull/7490 added several changes in strings that prevents the tests to execute. This pull updates the tests.

More changes will have to be done once #75 gets fixed.
2015-07-22 13:53:17 +02:00

31 lines
875 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->installExtensionFromDirectory($path . 'src/com_weblinks/');
$I->doAdministratorLogout();
}
}