mirror of
https://github.com/joomla-extensions/weblinks.git
synced 2024-11-01 11:22:28 +00:00
37 lines
979 B
PHP
37 lines
979 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->doAdministratorLogin();
|
|
$I->comment('get Weblinks repository folder from acceptance.suite.yml (see _support/AcceptanceHelper.php)');
|
|
|
|
// 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");
|
|
$I->doAdministratorLogout();
|
|
}
|
|
|
|
} |