aboutsummaryrefslogtreecommitdiff
path: root/test/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'test/Tests')
-rw-r--r--test/Tests/Writers/Muse.hs6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Tests/Writers/Muse.hs b/test/Tests/Writers/Muse.hs
index 6cf718c0b..c2439b1a2 100644
--- a/test/Tests/Writers/Muse.hs
+++ b/test/Tests/Writers/Muse.hs
@@ -400,6 +400,12 @@ tests = [ testGroup "block elements"
, " Para 2.1 | Para 2.2"
, " |+ Table 1 +|"
]
+ , "table inside bullet list" =:
+ bulletList [simpleTable [] [[para "foo", para "bar"]
+ ,[para "bat", para "baz"]]]
+ =?> unlines [ " - foo | bar"
+ , " bat | baz"
+ ]
, "table with one column" =:
let headers = []
rows = [[para "Para 1"]