diff options
Diffstat (limited to 'tests/text_formatter/s9e/utils_test.php')
-rw-r--r-- | tests/text_formatter/s9e/utils_test.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/text_formatter/s9e/utils_test.php b/tests/text_formatter/s9e/utils_test.php index f2b480facb..1c03783792 100644 --- a/tests/text_formatter/s9e/utils_test.php +++ b/tests/text_formatter/s9e/utils_test.php @@ -176,6 +176,36 @@ class phpbb_textformatter_s9e_utils_test extends phpbb_test_case '[quote=user post_id=123 url=http://example.org]...[/quote]', ), array( + '...', + array('author' => ' '), + '[quote=" "]...[/quote]', + ), + array( + '...', + array('author' => 'foo bar'), + '[quote="foo bar"]...[/quote]', + ), + array( + '...', + array('author' => '\\'), + '[quote="\\\\"]...[/quote]', + ), + array( + '...', + array('author' => '[quote="foo"]'), + '[quote=\'[quote="foo"]\']...[/quote]', + ), + array( + '...', + array('author' => '""'), + '[quote=\'""\']...[/quote]', + ), + array( + '...', + array('author' => "''"), + '[quote="\'\'"]...[/quote]', + ), + array( 'This is a long quote that is definitely going to exceed 80 characters', array(), "[quote]\nThis is a long quote that is definitely going to exceed 80 characters\n[/quote]", |