From: jamiesensei Date: Sat, 30 Jun 2007 04:22:51 +0000 (+0000) Subject: removing file that mistakenly was committed to HEAD X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=7856a8c3840f72f5b47072314e2f1a0f11704c25;p=moodle.git removing file that mistakenly was committed to HEAD --- diff --git a/lib/simpletest/testquestionlib.php b/lib/simpletest/testquestionlib.php deleted file mode 100644 index 73572e7699..0000000000 --- a/lib/simpletest/testquestionlib.php +++ /dev/null @@ -1,40 +0,0 @@ -libdir.'/questionlib.php'); -class questionlib_test extends UnitTestCase { - - function setUp() { - } - - function tearDown() { - } - - function test_find_file_links_from_html() { - global $CFG; - $this->assertEqual(array_keys(find_file_links_from_html("hello hello", 2)), - array("gg/go.php")); - $this->assertEqual(array_keys(find_file_links_from_html("hello wwwroot}/file.php/2/gg/go.php\">hello", 2)), - array("gg/go.php")); - $this->assertEqual(array_keys(find_file_links_from_html('hello wwwroot.'/file.php/1/ggo/fghfgh/sdfsdf/sdf/go.php\'>hello', 1)), - array('ggo/fghfgh/sdfsdf/sdf/go.php')); - $this->assertEqual(array_keys(find_file_links_from_html('hello wwwroot.'/file.php?file=/1/ggo/fghfgh/sdfsdf/sdf/go.php\'>hello'. - "hello hello" . "hello hello" . - "hello hello" ."hello hello",1)), - array('ggo/fghfgh/sdfsdf/sdf/go.php')); - $this->assertEqual(array_keys(find_file_links_from_html('hello wwwroot.'/file.php/1/ggo/fghfgh/sdfsdf/sdf/go.php\' />', 1)), - array('ggo/fghfgh/sdfsdf/sdf/go.php')); - } -} -?>