summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter
diff options
context:
space:
mode:
authorvlakoff <vlakoff@gmail.com>2013-05-25 19:46:11 +0200
committervlakoff <vlakoff@gmail.com>2013-05-25 19:46:11 +0200
commitef2be33c1e726f92d7e8a12669fe98733e32b086 (patch)
tree6a7f9ed1317586548031389468fc49df1f791273 /tests/codeigniter
parentef8ca68ea0f6c7a1ccde0dcb33308a6805a602ea (diff)
Try a different method, the previous one wasn't working in Travis
Diffstat (limited to 'tests/codeigniter')
-rw-r--r--tests/codeigniter/core/Loader_test.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/codeigniter/core/Loader_test.php b/tests/codeigniter/core/Loader_test.php
index 04363c15c..ac2656e75 100644
--- a/tests/codeigniter/core/Loader_test.php
+++ b/tests/codeigniter/core/Loader_test.php
@@ -147,7 +147,8 @@ class Loader_test extends CI_TestCase {
public function test_driver()
{
- $this->ci_vfs_clone('system/libraries/Driver.php');
+ // Call the autoloader, to include system/libraries/Driver.php
+ class_exists('CI_Driver_Library', TRUE);
// Create driver in VFS
$driver = 'unit_test_driver';