mirror of
https://github.com/joomla-extensions/weblinks.git
synced 2024-11-16 01:27:07 +00:00
22 lines
513 B
PHP
22 lines
513 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 InstallJoomlaCest
|
|
{
|
|
public function installJoomla(\AcceptanceTester $I)
|
|
{
|
|
$I->am('Administrator');
|
|
$I->installJoomlaRemovingInstallationFolder();
|
|
$I->doAdministratorLogin();
|
|
$I->disableStatistics();
|
|
$I->setErrorReportingToDevelopment();
|
|
}
|
|
}
|