diff options
Diffstat (limited to 'test/Tests')
-rw-r--r-- | test/Tests/Readers/Man.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/Tests/Readers/Man.hs b/test/Tests/Readers/Man.hs index d45c69705..7541d1c67 100644 --- a/test/Tests/Readers/Man.hs +++ b/test/Tests/Readers/Man.hs @@ -40,12 +40,15 @@ tests = [ , "Macro args" =: ".B \"single arg with \"\"Q\"\"\"" =?> (para $ strong $ text "single arg with \"Q\"") + , "Argument from next line" =: + ".B\nsingle arg with \"Q\"" + =?> (para $ strong $ text "single arg with \"Q\"") , "comment" =: ".\\\"bla\naaa" =?> (para $ str "aaa") , "link" =: ".BR aa (1)" - =?> para (text "aa(1)") + =?> para (strong (str "aa") <> str "(1)") ], testGroup "Escapes" [ "fonts" =: |