summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/Setup_test.php
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2012-05-16 21:39:14 +0200
committerTimothy Warren <tim@timshomepage.net>2012-05-16 21:39:14 +0200
commitf7f44584c7acb8be6097445529f09255bfe34e5d (patch)
treebb8760229e5113bca38d7505a475c1e6c62f2059 /tests/codeigniter/Setup_test.php
parentcb6c34eb5839d2b9c8d8ce70dcddde8931c0c277 (diff)
parentc59e8720177d96a1dec1b2cbcd6296bbfceb4a2b (diff)
Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into email
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