summaryrefslogtreecommitdiff
path: root/inc/parser/tests/parser.group.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2005-10-22 01:23:28 +0200
committerAndreas Gohr <andi@splitbrain.org>2005-10-22 01:23:28 +0200
commitc13104acf0edfa5c08738d32e26ae51ea7e4407c (patch)
tree23141f0c865563590d33003fcbb5173d2ed0b53c /inc/parser/tests/parser.group.php
parentaa11db09d61b813593c2ed7d91b329f98ae7010a (diff)
downloadrpg-c13104acf0edfa5c08738d32e26ae51ea7e4407c.tar.gz
rpg-c13104acf0edfa5c08738d32e26ae51ea7e4407c.tar.bz2
moved parser tests to new test environment
The parser tests are outdated and need to be adjusted. Currently 71 tests fail. Others are probably missing. darcs-hash:20051021232328-7ad00-c1d62951dad810dc73f8e78ae82f37465c21c261.gz
Diffstat (limited to 'inc/parser/tests/parser.group.php')
-rw-r--r--inc/parser/tests/parser.group.php46
1 files changed, 0 insertions, 46 deletions
diff --git a/inc/parser/tests/parser.group.php b/inc/parser/tests/parser.group.php
deleted file mode 100644
index ca9084127..000000000
--- a/inc/parser/tests/parser.group.php
+++ /dev/null
@@ -1,46 +0,0 @@
-<?php
-/**
-* @version $Id: parser.group.php,v 1.3 2005/03/30 13:42:10 harryf Exp $
-* @package Dokuwiki
-* @subpackage Tests
-*/
-
-/**
-* Init
-*/
-require_once('./testconfig.php');
-
-/**
-* @package Dokuwiki
-* @subpackage Tests
-*/
-class ParserGroupTest extends GroupTest {
-
- function ParserGroupTest() {
- $this->GroupTest('ParserGroupTest');
- $this->addTestFile('parser_eol.test.php');
- $this->addTestFile('parser_footnote.test.php');
- $this->addTestFile('parser_formatting.test.php');
- $this->addTestFile('parser_headers.test.php');
- $this->addTestFile('parser_i18n.test.php');
- $this->addTestFile('parser_links.test.php');
- $this->addTestFile('parser_lists.test.php');
- $this->addTestFile('parser_preformatted.test.php');
- $this->addTestFile('parser_quote.test.php');
- $this->addTestFile('parser_replacements.test.php');
- $this->addTestFile('parser_table.test.php');
- $this->addTestFile('parser_tocsections.test.php');
- $this->addTestFile('parser_unformatted.test.php');
- }
-
-}
-
-/**
-* Conditional test runner
-*/
-if (!defined('TEST_RUNNING')) {
- define('TEST_RUNNING', true);
- $test = &new ParserGroupTest();
- $test->run(new HtmlReporter());
-}
-?>