aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/Tests/Readers/Jira.hs9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Tests/Readers/Jira.hs b/test/Tests/Readers/Jira.hs
index 299db7bed..1ae3244ab 100644
--- a/test/Tests/Readers/Jira.hs
+++ b/test/Tests/Readers/Jira.hs
@@ -117,6 +117,15 @@ tests =
"!https://example.com/image.jpg!" =?>
para (image "https://example.com/image.jpg" "" mempty)
+ , "thumbnail image" =:
+ "!image.jpg|thumbnail!" =?>
+ para (imageWith ("", ["thumbnail"], []) "image.jpg" "" mempty)
+
+ , "image with attributes" =:
+ "!image.gif|align=right, vspace=4, title=Hello!" =?>
+ let attr = ("", [], [("align", "right"), ("vspace", "4")])
+ in para $ imageWith attr "image.gif" "Hello" mempty
+
, "HTML entity" =:
"me & you" =?> para "me & you"