diff options
author | Taufan Aditya <toopay@taufanaditya.com> | 2012-05-04 20:43:08 +0200 |
---|---|---|
committer | Taufan Aditya <toopay@taufanaditya.com> | 2012-05-04 20:43:08 +0200 |
commit | 51a7c0b98df29205d39bb404c2bcd12bfb4ed4cb (patch) | |
tree | 2e51bfac1cb064cbdfe6cc4235ee2ccc3c44f74b /tests/codeigniter | |
parent | 39f35fde6d023433e98904105f55f305483b6b5e (diff) |
Clean up
Diffstat (limited to 'tests/codeigniter')
-rw-r--r-- | tests/codeigniter/Setup_test.php | 10 |
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 |