30
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-06-02 06:20:50 +00:00
weblinks/tests/acceptance/install/InstallWeblinksCest.php

34 lines
938 B
PHP
Raw Normal View History

<?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)
{
2017-08-31 23:11:19 +00:00
$I->am('Administrator');
$I->installJoomlaRemovingInstallationFolder();
2017-08-23 16:03:48 +00:00
$I->doAdministratorLogin();
2017-08-31 23:11:19 +00:00
$I->disableStatistics();
$I->setErrorReportingToDevelopment();
}
/**
* @depends installJoomla
*/
public function installWeblinks(\AcceptanceTester $I)
2015-07-29 16:23:47 +00:00
{
$I->comment('get Weblinks repository folder from acceptance.suite.yml (see _support/AcceptanceHelper.php)');
2017-08-31 23:11:19 +00:00
$I->doAdministratorLogin();
// URL where the package file to install is located (mostly the same as joomla-cms)
2017-08-23 16:03:48 +00:00
$I->installExtensionFromFileUpload('pkg-weblinks-current.zip');
2015-07-29 16:23:47 +00:00
$I->doAdministratorLogout();
}
2017-08-18 14:05:08 +00:00
}