From 7856a8c3840f72f5b47072314e2f1a0f11704c25 Mon Sep 17 00:00:00 2001 From: jamiesensei Date: Sat, 30 Jun 2007 04:22:51 +0000 Subject: [PATCH] removing file that mistakenly was committed to HEAD --- lib/simpletest/testquestionlib.php | 40 ------------------------------ 1 file changed, 40 deletions(-) delete mode 100644 lib/simpletest/testquestionlib.php diff --git a/lib/simpletest/testquestionlib.php b/lib/simpletest/testquestionlib.php deleted file mode 100644 index 73572e76996..00000000000 --- 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')); - } -} -?>