summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2013-05-27 13:23:41 +0200
committerAndrey Andreev <narf@devilix.net>2013-05-27 13:23:41 +0200
commit51f69a909974d4cb9803fbebf53f773d47d18938 (patch)
tree6a7f9ed1317586548031389468fc49df1f791273 /tests
parentd4d80223ccef8fd3606f3a89d33afbfe95226bd8 (diff)
parentef2be33c1e726f92d7e8a12669fe98733e32b086 (diff)
Merge pull request #2462 from vlakoff/develop-4
Fix tests execution
Diffstat (limited to 'tests')
-rw-r--r--tests/codeigniter/core/Loader_test.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/codeigniter/core/Loader_test.php b/tests/codeigniter/core/Loader_test.php
index e75d0d564..ac2656e75 100644
--- a/tests/codeigniter/core/Loader_test.php
+++ b/tests/codeigniter/core/Loader_test.php
@@ -147,6 +147,9 @@ class Loader_test extends CI_TestCase {
public function test_driver()
{
+ // Call the autoloader, to include system/libraries/Driver.php
+ class_exists('CI_Driver_Library', TRUE);
+
// Create driver in VFS
$driver = 'unit_test_driver';
$dir = ucfirst($driver);