From 436873e227d92d4c01ca5092e747a0d73741cd15 Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Fri, 21 Jul 2006 23:27:00 +0000 Subject: [PATCH] Move tester, complete HTML_Purifier -> HTMLPurifier move. git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@68 48356398-32a2-884e-a903-53898d9a118a --- HTML_Purifier.php => HTMLPurifier.php | 0 tester.php | 25 ----------------- tests/{HTML_Purifier.php => HTMLPurifier.php} | 0 tests/index.php | 27 +++++++++++++++++++ 4 files changed, 27 insertions(+), 25 deletions(-) rename HTML_Purifier.php => HTMLPurifier.php (100%) delete mode 100644 tester.php rename tests/{HTML_Purifier.php => HTMLPurifier.php} (100%) create mode 100644 tests/index.php diff --git a/HTML_Purifier.php b/HTMLPurifier.php similarity index 100% rename from HTML_Purifier.php rename to HTMLPurifier.php diff --git a/tester.php b/tester.php deleted file mode 100644 index 4f88adcf..00000000 --- a/tester.php +++ /dev/null @@ -1,25 +0,0 @@ -addTestFile('HTMLPurifier.php'); -$test->addTestFile('Lexer.php'); -//$test->addTestFile('Token.php'); -$test->addTestFile('PureHTMLDefinition.php'); -$test->addTestFile('Generator.php'); -chdir('../'); - -$test->run( new HtmlReporter() ); - -?> \ No newline at end of file diff --git a/tests/HTML_Purifier.php b/tests/HTMLPurifier.php similarity index 100% rename from tests/HTML_Purifier.php rename to tests/HTMLPurifier.php diff --git a/tests/index.php b/tests/index.php new file mode 100644 index 00000000..247b1d0a --- /dev/null +++ b/tests/index.php @@ -0,0 +1,27 @@ +addTestFile('HTMLPurifier.php'); +$test->addTestFile('Lexer.php'); +//$test->addTestFile('Token.php'); +$test->addTestFile('PureHTMLDefinition.php'); +$test->addTestFile('Generator.php'); + +$test->run( new HtmlReporter() ); + +?> \ No newline at end of file