diff options
author | uckelman <uckelman@nomic.net> | 2010-04-25 17:10:18 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-04-25 17:10:18 +0000 |
commit | 17e5654c1583939217c31f876419bc2f6d6edc43 (patch) | |
tree | 5007bc1c666df94971dd8cafec79103040f6f857 /test/BBCodeParserTest.php | |
parent | 0021abab9556142d13ec771baeacbad5c3440b41 (diff) |
Added list handling.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6742 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'test/BBCodeParserTest.php')
-rw-r--r-- | test/BBCodeParserTest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/BBCodeParserTest.php b/test/BBCodeParserTest.php index 41cb0c5..f1047f9 100644 --- a/test/BBCodeParserTest.php +++ b/test/BBCodeParserTest.php @@ -17,7 +17,8 @@ class BBCodeParserTest extends PHPUnit_Framework_TestCase { public function providerParse() { return array( array('', '3i2cqt66', '', null), - array('[b:3i2cqt66]This is a[/b:3i2cqt66] test of [i:3i2cqt66]the BBCode[/i:3i2cqt66] parser. Will [u:3i2cqt66][i:3i2cqt66]it[/i:3i2cqt66][/u:3i2cqt66] parse? Also, throw in some difficult characters: 1 < 2 < 4 > 3.', '3i2cqt66', '__This is a__ test of _the BBCode_ parser. Will __it__ parse? Also, throw in some difficult characters: 1 < 2 < 4 > 3.', null) + array('[b:3i2cqt66]This is a[/b:3i2cqt66] test of [i:3i2cqt66]the BBCode[/i:3i2cqt66] parser. Will [u:3i2cqt66][i:3i2cqt66]it[/i:3i2cqt66][/u:3i2cqt66] parse? Also, throw in some difficult characters: 1 < 2 < 4 > 3.', '3i2cqt66', '__This is a__ test of _the BBCode_ parser. Will __it__ parse? Also, throw in some difficult characters: 1 < 2 < 4 > 3.', null), + array("Foo\n[list=2:11cx3qbi]\n[*:11cx3qbi] first[/*:m:11cx3qbi]\n[*:11cx3qbi] second[/*:m:11cx3qbi][/list:o:11cx3qbi]\nBar", '11cx3qbi', "Foo\n\n * first\n * second\n\nBar", null) ); } } |