1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-08 19:46:51 +02:00
Files
php-e107/e107_tests/tests/_support/Helper/Acceptance.php
Deltik e49ee50d31 Preparation for merge with e107 repository
Moved all test files to e107_tests subdirectory
2019-11-27 11:18:53 -06:00

22 lines
450 B
PHP

<?php
namespace Helper;
// here you can define custom actions
// all public methods declared in helper class will be available in $I
class Acceptance extends E107Base
{
protected $deployer_components = ['db', 'fs'];
protected function writeLocalE107Config()
{
// Noop
// Acceptance tests will install the app themselves
}
public function unlinkE107ConfigFromTestEnvironment()
{
$this->deployer->unlinkAppFile("e107_config.php");
}
}