mirror of
https://github.com/e107inc/e107.git
synced 2025-10-14 06:24:56 +02:00
git-clean in E107Base now runs first in _beforeSuite() so that tainted files are not uploaded in Acceptance tests E107Base::revokeLocalE107Config() now checks for file existence before unlinking. XXX: Could remove this method if cleanVCS() proves reliable Acceptance won't try to write an e107_config.php because the tests themselves populate the configuration file
17 lines
335 B
PHP
17 lines
335 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
|
|
}
|
|
}
|