32
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2025-01-08 23:14:06 +00:00
weblinks/tests/acceptance/install/InstallWeblinksCest.php

40 lines
1.1 KiB
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)
{
$I->am('Administrator');
$I->installJoomlaRemovingInstallationFolder();
$I->doAdministratorLogin();
$I->setErrorReportingToDevelopment();
}
/**
* @depends installJoomla
*/
public function installWeblinks(\AcceptanceTester $I)
2015-07-29 16:23:47 +00:00
{
$I->doAdministratorLogin();
$I->comment('get Weblinks repository folder from acceptance.suite.yml (see _support/AcceptanceHelper.php)');
2015-11-01 09:13:36 +00:00
<<<<<<< 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");
2015-11-01 09:13:36 +00:00
=======
2015-07-29 16:23:47 +00:00
$path = $I->getConfiguration('repo_folder');
2015-10-31 18:01:21 +00:00
$I->installExtensionFromFolder(rtrim($path, "/") . '/src/com_weblinks/');
2015-11-01 09:13:36 +00:00
>>>>>>> master
2015-07-29 16:23:47 +00:00
$I->doAdministratorLogout();
}
}