diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-10-09 12:27:50 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-10-09 12:27:50 +0200 |
commit | 580fe8ec482f5df7ca5b91e11b13b72a8f3ed0b8 (patch) | |
tree | c96f73352058be5f072d41390b6393458c00b19c | |
parent | e45ad2b74d9534395616d661cf4656d6f259943b (diff) |
Set REMOTE_ADDR in tests
-rw-r--r-- | tests/Bootstrap.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Bootstrap.php b/tests/Bootstrap.php index 5216038c6..1c666d503 100644 --- a/tests/Bootstrap.php +++ b/tests/Bootstrap.php @@ -11,6 +11,7 @@ defined('PROJECT_BASE') OR define('PROJECT_BASE', realpath($dir.'/../').'/'); defined('BASEPATH') OR define('BASEPATH', PROJECT_BASE.'system/'); defined('APPPATH') OR define('APPPATH', PROJECT_BASE.'application/'); defined('VIEWPATH') OR define('VIEWPATH', PROJECT_BASE.''); +isset($_SERVER['REMOTE_ADDR']) OR $_SERVER['REMOTE_ADDR'] = '127.0.0.1'; // Get vfsStream either via PEAR or composer foreach (explode(PATH_SEPARATOR, get_include_path()) as $path) |