]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-17522 no db specific tests - they all must work the same!
authorskodak <skodak>
Thu, 4 Dec 2008 15:06:28 +0000 (15:06 +0000)
committerskodak <skodak>
Thu, 4 Dec 2008 15:06:28 +0000 (15:06 +0000)
admin/report/unittest/dbtest.php

index dd58e152354faaade31e881aca2eba9c0d6c3616..f59eda70e541c7b9a5640320683d2ed57945ae53 100644 (file)
@@ -80,12 +80,6 @@ if (!empty($tests)) {
         $test->addTestFile($CFG->libdir.'/dml/simpletest/testdml.php');
         $test->addTestFile($CFG->libdir.'/ddl/simpletest/testddl.php');
 
-        // Look for DB-specific tests (testing sql_ helper functions)
-        $dbfilename = $CFG->libdir.'/dml/simpletest/test_'.get_class($database).'.php';
-        if (file_exists($dbfilename)) {
-            $test->addTestFile($dbfilename);
-        }
-
         // Make the reporter, which is what displays the results.
         $reporter = new ExHtmlReporter($showpasses);