diff options
author | Pascal Kriete <pascal.kriete@ellislab.com> | 2011-04-21 06:58:51 +0200 |
---|---|---|
committer | Pascal Kriete <pascal.kriete@ellislab.com> | 2011-04-21 06:58:51 +0200 |
commit | c5d93cb3d4d8909507cbed548620e58d26c7c4bd (patch) | |
tree | 3c2e2ef3b8b8ebef6ed7a2c13c15f8dd48376e88 /tests/Bootstrap.php | |
parent | 69c97a71476e4eaa6c629022fcd4ec7f36d4ec0d (diff) |
Removing some lefover code form experimenting with process isolation.
Diffstat (limited to 'tests/Bootstrap.php')
-rw-r--r-- | tests/Bootstrap.php | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/tests/Bootstrap.php b/tests/Bootstrap.php index ca63ff788..5a5eb6458 100644 --- a/tests/Bootstrap.php +++ b/tests/Bootstrap.php @@ -3,18 +3,10 @@ ini_set('display_errors', 1); error_reporting(E_ALL | E_STRICT); -if ( ! defined('PROJECT_BASE')) -{ - define('PROJECT_BASE', realpath(dirname(__FILE__).'/../').'/'); - - define('BASEPATH', PROJECT_BASE.'system/'); - define('APPPATH', PROJECT_BASE.'application/'); -} -// define('EXT', '.php'); - -// @todo provide a way to set various config options - +define('PROJECT_BASE', realpath(dirname(__FILE__).'/../').'/'); +define('BASEPATH', PROJECT_BASE.'system/'); +define('APPPATH', PROJECT_BASE.'application/'); // set up a highly controlled CI environment require_once './lib/common.php'; |