Fix undefined constant in config example file

This commit is contained in:
Frederic Guillot
2016-08-22 21:48:27 -04:00
parent 51fef80f7d
commit e2a9440c92
5 changed files with 33 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
<?php
class DefaultConfigFileTest extends PHPUnit_Framework_TestCase
{
public function testThatFileCanBeImported()
{
$this->assertNotFalse(include __DIR__.'/../../config.default.php');
}
}