summaryrefslogtreecommitdiff
path: root/test/Tests/Writers
diff options
context:
space:
mode:
authorAlexander Krotov <ilabdsf@gmail.com>2018-01-22 16:24:44 +0300
committerAlexander Krotov <ilabdsf@gmail.com>2018-01-22 16:24:44 +0300
commit288065cfd44eb02f9ef4e6c9b901e14776246dbb (patch)
tree6f82b583c8d12f5ac04712fdfcd1116490fc54ad /test/Tests/Writers
parentb818623d42402027236d04a3300956f3ad3f1295 (diff)
Muse writer: indent lists inside Div
Diffstat (limited to 'test/Tests/Writers')
-rw-r--r--test/Tests/Writers/Muse.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Tests/Writers/Muse.hs b/test/Tests/Writers/Muse.hs
index 158f80f67..ee4c76587 100644
--- a/test/Tests/Writers/Muse.hs
+++ b/test/Tests/Writers/Muse.hs
@@ -282,7 +282,9 @@ tests = [ testGroup "block elements"
, " |+ Table 1 +|"
]
]
- -- Div is trivial
+ , "div with bullet list" =:
+ divWith nullAttr (bulletList [para $ text "foo"]) =?>
+ unlines [ " - foo" ] -- Making sure bullets are indented
-- Null is trivial
]
, testGroup "inline elements"