summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/Setup_test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codeigniter/Setup_test.php')
-rw-r--r--tests/codeigniter/Setup_test.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/codeigniter/Setup_test.php b/tests/codeigniter/Setup_test.php
index 550245f2f..5317c56c7 100644
--- a/tests/codeigniter/Setup_test.php
+++ b/tests/codeigniter/Setup_test.php
@@ -1,13 +1,13 @@
<?php
class Setup_test extends PHPUnit_Framework_TestCase {
-
- function test_nonsense()
+
+ public 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