summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlexander Krotov <ilabdsf@gmail.com>2018-02-28 14:42:43 +0300
committerAlexander Krotov <ilabdsf@gmail.com>2018-02-28 14:42:43 +0300
commit8b1630aae029a0c4ce6e6dc881d3e11d0ca7e9ce (patch)
treeef14850f039b8bd44fc0356675336f9d1e2c8840 /test
parent1d57f7a641e9c66d56cab20905a602202336fbad (diff)
Muse writer: change verse markup
Use "> " instead of <verse> tag
Diffstat (limited to 'test')
-rw-r--r--test/Tests/Writers/Muse.hs8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/Tests/Writers/Muse.hs b/test/Tests/Writers/Muse.hs
index bbf833563..a5a6986f2 100644
--- a/test/Tests/Writers/Muse.hs
+++ b/test/Tests/Writers/Muse.hs
@@ -34,11 +34,9 @@ tests = [ testGroup "block elements"
]
]
, "line block" =: lineBlock [text "Foo", text "bar", text "baz"]
- =?> unlines [ "<verse>"
- , "Foo"
- , "bar"
- , "baz"
- , "</verse>"
+ =?> unlines [ "> Foo"
+ , "> bar"
+ , "> baz"
]
, "code block" =: codeBlock "int main(void) {\n\treturn 0;\n}"
=?> unlines [ "<example>"