aboutsummaryrefslogtreecommitdiff
path: root/bbcode
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-01-12 05:32:00 +0000
committerGregor Kleen <gkleen@yggdrasil.li>2016-01-12 05:32:00 +0000
commit2cb2c2c34f91a9239a547c2fa67f158a90c6652e (patch)
treec8d1038187e55b2a70c94a9ba837788a7090a85c /bbcode
parent04ddf204d1d9b44450a101fe46a4f2bf4cb55746 (diff)
downloadthermoprint-2cb2c2c34f91a9239a547c2fa67f158a90c6652e.tar
thermoprint-2cb2c2c34f91a9239a547c2fa67f158a90c6652e.tar.gz
thermoprint-2cb2c2c34f91a9239a547c2fa67f158a90c6652e.tar.bz2
thermoprint-2cb2c2c34f91a9239a547c2fa67f158a90c6652e.tar.xz
thermoprint-2cb2c2c34f91a9239a547c2fa67f158a90c6652e.zip
faulty test
Diffstat (limited to 'bbcode')
-rw-r--r--bbcode/test/Text/BBCode/LexerSpec.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/bbcode/test/Text/BBCode/LexerSpec.hs b/bbcode/test/Text/BBCode/LexerSpec.hs
index 9d69091..f4dcee6 100644
--- a/bbcode/test/Text/BBCode/LexerSpec.hs
+++ b/bbcode/test/Text/BBCode/LexerSpec.hs
@@ -87,7 +87,7 @@ examples = [ ("[t]test[/t]"
87 , [BBOpen "t" [("attr", Just "val")], BBStr "test", BBClose "t"]) 87 , [BBOpen "t" [("attr", Just "val")], BBStr "test", BBClose "t"])
88 , ("[t attr=\"val\"]test[/t]" 88 , ("[t attr=\"val\"]test[/t]"
89 , [BBOpen "t" [("attr", Just "val")], BBStr "test", BBClose "t"]) 89 , [BBOpen "t" [("attr", Just "val")], BBStr "test", BBClose "t"])
90 , ("[t attr=\"va\\]l\"]test[/t]" 90 , ("[t attr=\"va]l\"]test[/t]"
91 , [BBOpen "t" [("attr", Just "va]l")], BBStr "test", BBClose "t"]) 91 , [BBOpen "t" [("attr", Just "va]l")], BBStr "test", BBClose "t"])
92 , ("[t attr=\"va\\\"l\"]test[/t]" 92 , ("[t attr=\"va\\\"l\"]test[/t]"
93 , [BBOpen "t" [("attr", Just "va\"l")], BBStr "test", BBClose "t"]) 93 , [BBOpen "t" [("attr", Just "va\"l")], BBStr "test", BBClose "t"])