summaryrefslogtreecommitdiffstats
path: root/tests/mocks/core/uri.php
diff options
context:
space:
mode:
authorTaufan Aditya <toopay@taufanaditya.com>2012-03-28 10:15:30 +0200
committerTaufan Aditya <toopay@taufanaditya.com>2012-03-28 10:15:30 +0200
commitca16c4ff1aa0cf5ebfbe877e9be755c0b7d2061c (patch)
tree3d4fdf3ef62e215f2040992196bc041a91c97e90 /tests/mocks/core/uri.php
parent67c287192b5ff414753ae50a834932f676a0db9e (diff)
Adding autoloader and mocks directory
Diffstat (limited to 'tests/mocks/core/uri.php')
-rw-r--r--tests/mocks/core/uri.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/mocks/core/uri.php b/tests/mocks/core/uri.php
new file mode 100644
index 000000000..207c7dc41
--- /dev/null
+++ b/tests/mocks/core/uri.php
@@ -0,0 +1,27 @@
+<?php
+
+require BASEPATH.'core/URI.php';
+
+class Mock_Core_URI extends CI_URI {
+
+ public function __construct()
+ {
+ $test = CI_TestCase::instance();
+ $cls =& $test->ci_core_class('cfg');
+
+ // set predictable config values
+ $test->ci_set_config(array(
+ 'index_page' => 'index.php',
+ 'base_url' => 'http://example.com/',
+ 'subclass_prefix' => 'MY_'
+ ));
+
+ $this->config = new $cls;
+
+ }
+
+ protected function _is_cli_request()
+ {
+ return FALSE;
+ }
+} \ No newline at end of file