aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlbert Krewinkel <tarleb@moltkeplatz.de>2014-04-18 08:33:25 +0200
committerAlbert Krewinkel <tarleb@moltkeplatz.de>2014-04-18 08:34:06 +0200
commitf19d7233d8d3e47912b760fc62a253e5baf8275a (patch)
treedc7e1e95d41a77adf22bbbbae791ec2273f83afc /tests
parent6d6724cf2c6ae6bcc0df312c476e45644c972a85 (diff)
downloadpandoc-f19d7233d8d3e47912b760fc62a253e5baf8275a.tar.gz
Org reader: Fix parsing of loose lists
Loose lists (i.e. lists with blankline separated items), were parsed as multiple lists, each containing a single item. This patch fixes this issue.
Diffstat (limited to 'tests')
-rw-r--r--tests/Tests/Readers/Org.hs21
1 files changed, 16 insertions, 5 deletions
diff --git a/tests/Tests/Readers/Org.hs b/tests/Tests/Readers/Org.hs
index 7d5bfe650..572fc501f 100644
--- a/tests/Tests/Readers/Org.hs
+++ b/tests/Tests/Readers/Org.hs
@@ -518,13 +518,24 @@ tests =
, ("TTL", [ plain $ "transistor-transistor" <> space <>
"logic" ])
, ("PSK", [ mconcat
- [ para $ "phase-shift" <> space <> "keying"
- , plain $ spcSep [ "a", "digital"
- , "modulation", "scheme" ]
+ [ para $ "phase-shift" <> space <> "keying"
+ , para $ spcSep [ "a", "digital"
+ , "modulation", "scheme" ]
]
- ]
- )
+ ])
]
+
+ , "Loose bullet list" =:
+ unlines [ "- apple"
+ , ""
+ , "- orange"
+ , ""
+ , "- peach"
+ ] =?>
+ bulletList [ para "apple"
+ , para "orange"
+ , para "peach"
+ ]
]
, testGroup "Tables"