32
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-11-18 10:25:11 +00:00
weblinks/tests/acceptance/install/InstallWeblinksCest.php
2015-11-01 10:13:36 +01:00

40 lines
1.1 KiB
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)');
<<<<<<< HEAD
// URL where the package file to install is located (mostly the same as joomla-cms)
$url = $I->getConfiguration('url');
$I->installExtensionFromUrl($url . "/pkg-weblinks-current.zip");
=======
$path = $I->getConfiguration('repo_folder');
$I->installExtensionFromFolder(rtrim($path, "/") . '/src/com_weblinks/');
>>>>>>> master
$I->doAdministratorLogout();
}
}