diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/Tests/Writers/RST.hs | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/test/Tests/Writers/RST.hs b/test/Tests/Writers/RST.hs index 13944ed34..4c0a926bb 100644 --- a/test/Tests/Writers/RST.hs +++ b/test/Tests/Writers/RST.hs @@ -40,6 +40,16 @@ tests = [ testGroup "rubrics"                , "       :name: foo"                , "       :class: baz"]            ] +        , testGroup "ligatures" -- handling specific sequences of blocks +          [ "a list is closed by a comment before a quote" =: -- issue 4248 +            bulletList [plain "bulleted"] <> blockQuote (plain "quoted") =?> +              unlines +              [ "-  bulleted" +              , "" +              , ".." +              , "" +              , "    quoted"] +          ]          , testGroup "headings"            [ "normal heading" =:                header 1 (text "foo") =?> | 
