mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #2116 from chillu/pulls/sapphiretest-env-type
Enforce 'dev' environment for test runs
This commit is contained in:
commit
211a3e4e77
@ -287,6 +287,10 @@ class SapphireTest extends PHPUnit_Framework_TestCase {
|
||||
public function setUpOnce() {
|
||||
$isAltered = false;
|
||||
|
||||
if(!Director::isDev()) {
|
||||
user_error('Tests can only run in "dev" mode', E_USER_ERROR);
|
||||
}
|
||||
|
||||
// Remove any illegal extensions that are present
|
||||
foreach($this->illegalExtensions as $class => $extensions) {
|
||||
foreach($extensions as $extension) {
|
||||
|
Loading…
Reference in New Issue
Block a user