summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-01-06 12:37:45 +0100
committerAndrey Andreev <narf@devilix.net>2014-01-06 12:37:45 +0100
commitfd15a707ee8ec0749c8b51b0b21683b946160096 (patch)
tree19579579faa1e87df69ae4a190602bf67a904fa1 /tests
parente6376aa4a95b7641a5d0cc5101118b9307be75bc (diff)
Remove redudant Loader tests for library() & driver() with no parameters
Diffstat (limited to 'tests')
-rw-r--r--tests/codeigniter/core/Loader_test.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/codeigniter/core/Loader_test.php b/tests/codeigniter/core/Loader_test.php
index 9ad3ca6b9..8fbeaec7b 100644
--- a/tests/codeigniter/core/Loader_test.php
+++ b/tests/codeigniter/core/Loader_test.php
@@ -35,9 +35,6 @@ class Loader_test extends CI_TestCase {
$this->assertTrue(class_exists($class), $class.' does not exist');
$this->assertAttributeInstanceOf($class, $lib, $this->ci_obj);
- // Test no lib given
- $this->assertNull($this->load->library());
-
// Test a string given to params
$this->assertNull($this->load->library($lib, ' '));
@@ -167,9 +164,6 @@ class Loader_test extends CI_TestCase {
$this->assertNull($this->load->library($driver, NULL, $obj));
$this->assertAttributeInstanceOf($class, $obj, $this->ci_obj);
- // Test no driver given
- $this->assertFalse($this->load->driver());
-
// Test a string given to params
$this->assertNull($this->load->driver($driver, ' '));
}