diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Tests/Readers/Jira.hs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Tests/Readers/Jira.hs b/test/Tests/Readers/Jira.hs index 1ae3244ab..05fc9a3ab 100644 --- a/test/Tests/Readers/Jira.hs +++ b/test/Tests/Readers/Jira.hs @@ -126,6 +126,10 @@ tests = let attr = ("", [], [("align", "right"), ("vspace", "4")]) in para $ imageWith attr "image.gif" "Hello" mempty + , "inserted text" =: + "+the new version+" =?> + para (spanWith ("", ["underline"], []) "the new version") + , "HTML entity" =: "me & you" =?> para "me & you" |