summaryrefslogtreecommitdiff
path: root/_test/tests/inc/parser/parser_quote.test.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-05-01 22:58:57 +0200
committerAndreas Gohr <andi@splitbrain.org>2012-05-01 22:58:57 +0200
commit050f8f4ddc32167e205a190eec9a60ad8f3caed5 (patch)
treed33554bde021d49cc7d802b4e053357e5e3b6b8f /_test/tests/inc/parser/parser_quote.test.php
parent3c0d44f1aa44d3ac3d8b9e652d172b1eda680bbf (diff)
downloadrpg-050f8f4ddc32167e205a190eec9a60ad8f3caed5.tar.gz
rpg-050f8f4ddc32167e205a190eec9a60ad8f3caed5.tar.bz2
removed unecessary requiresin unit tests
Diffstat (limited to '_test/tests/inc/parser/parser_quote.test.php')
-rw-r--r--_test/tests/inc/parser/parser_quote.test.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/_test/tests/inc/parser/parser_quote.test.php b/_test/tests/inc/parser/parser_quote.test.php
index 4d77f2a39..ae14671c1 100644
--- a/_test/tests/inc/parser/parser_quote.test.php
+++ b/_test/tests/inc/parser/parser_quote.test.php
@@ -21,11 +21,11 @@ class TestOfDoku_Parser_Quote extends TestOfDoku_Parser {
array('cdata',array("klm")),
array('p_close',array()),
array('document_end',array()),
-
+
);
$this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls);
}
-
+
function testQuoteWinCr() {
$this->P->addMode('quote',new Doku_Parser_Mode_Quote());
$this->P->parse("abc\r\n> def\r\n>>ghi\r\nklm");
@@ -44,11 +44,11 @@ class TestOfDoku_Parser_Quote extends TestOfDoku_Parser {
array('cdata',array("klm")),
array('p_close',array()),
array('document_end',array()),
-
+
);
$this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls);
}
-
+
function testQuoteMinumumContext() {
$this->P->addMode('quote',new Doku_Parser_Mode_Quote());
$this->P->parse("\n> def\n>>ghi\n ");
@@ -61,11 +61,11 @@ class TestOfDoku_Parser_Quote extends TestOfDoku_Parser {
array('quote_close',array()),
array('quote_close',array()),
array('document_end',array()),
-
+
);
$this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls);
}
-
+
function testQuoteEol() {
$this->P->addMode('quote',new Doku_Parser_Mode_Quote());
$this->P->addMode('eol',new Doku_Parser_Mode_Eol());
@@ -85,7 +85,7 @@ class TestOfDoku_Parser_Quote extends TestOfDoku_Parser {
array('cdata',array("klm")),
array('p_close',array()),
array('document_end',array()),
-
+
);
$this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls);
}