diff options
| author | Frederic Guillot <fred@kanboard.net> | 2016-08-22 21:48:27 -0400 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2016-08-22 21:48:27 -0400 |
| commit | e2a9440c927f9ca698daf42990eead1f6a15a997 (patch) | |
| tree | 79e761465071deb2cffcc73a275a5d152c0fe0f7 /tests/configtest/DefaultConfigFileTest.php | |
| parent | 51fef80f7d0358583dd474789a87a972a61a3ac0 (diff) | |
Fix undefined constant in config example file
Diffstat (limited to 'tests/configtest/DefaultConfigFileTest.php')
| -rw-r--r-- | tests/configtest/DefaultConfigFileTest.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/configtest/DefaultConfigFileTest.php b/tests/configtest/DefaultConfigFileTest.php new file mode 100644 index 00000000..0840925b --- /dev/null +++ b/tests/configtest/DefaultConfigFileTest.php @@ -0,0 +1,9 @@ +<?php + +class DefaultConfigFileTest extends PHPUnit_Framework_TestCase +{ + public function testThatFileCanBeImported() + { + $this->assertNotFalse(include __DIR__.'/../../config.default.php'); + } +} |
