summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/Setup_test.php
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2012-05-15 00:00:06 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2012-05-15 00:00:06 +0200
commit212b0470e1aa288ba4f4d47d13647d6cd150fd15 (patch)
treef800288e4d064c8b9e1f1f1aa6f1a3c075918cb2 /tests/codeigniter/Setup_test.php
parentfff6c2a3caa1ce14e58fcb3ee0d937d17985eea1 (diff)
parent82196b945e291c65fdb66b35e3205f786ce8e921 (diff)
Merge pull request #1324 from toopay/db-tests
Improved DB tests
Diffstat (limited to 'tests/codeigniter/Setup_test.php')
-rw-r--r--tests/codeigniter/Setup_test.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/codeigniter/Setup_test.php b/tests/codeigniter/Setup_test.php
index 550245f2f..b48e32bfb 100644
--- a/tests/codeigniter/Setup_test.php
+++ b/tests/codeigniter/Setup_test.php
@@ -2,12 +2,12 @@
class Setup_test extends PHPUnit_Framework_TestCase {
- function test_nonsense()
+ function test_bootstrap_constants()
{
- $this->markTestIncomplete('not implemented');
- // ensure that our bootstrapped test environment
- // is a good representation of an isolated CI install
- //die('here');
+ $this->assertTrue(defined('PROJECT_BASE'));
+ $this->assertTrue(defined('BASEPATH'));
+ $this->assertTrue(defined('APPPATH'));
+ $this->assertTrue(defined('VIEWPATH'));
}
} \ No newline at end of file