summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-08-22 21:48:27 -0400
committerFrederic Guillot <fred@kanboard.net>2016-08-22 21:48:27 -0400
commite2a9440c927f9ca698daf42990eead1f6a15a997 (patch)
tree79e761465071deb2cffcc73a275a5d152c0fe0f7 /tests
parent51fef80f7d0358583dd474789a87a972a61a3ac0 (diff)
Fix undefined constant in config example file
Diffstat (limited to 'tests')
-rw-r--r--tests/configtest/DefaultConfigFileTest.php9
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');
+ }
+}