diff options
author | Jesse Rosenthal <jrosenthal@jhu.edu> | 2018-01-22 14:06:47 -0500 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2018-01-22 14:06:47 -0500 |
commit | f8640fdff0ead507914c402109b02a778ca1c4c3 (patch) | |
tree | bd75091b377d914752f79b133a31aad23aedaf1c /test/Tests | |
parent | 145c3f54f989c3c1217b2706655e20e7af137c70 (diff) | |
download | pandoc-f8640fdff0ead507914c402109b02a778ca1c4c3.tar.gz |
Powerpoint writer tests: add tests for two-column layout and images
Powerpoint output checked in MS PowerPoint 2013 (Windows)
Diffstat (limited to 'test/Tests')
-rw-r--r-- | test/Tests/Writers/Powerpoint.hs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Tests/Writers/Powerpoint.hs b/test/Tests/Writers/Powerpoint.hs index f78916dac..694758268 100644 --- a/test/Tests/Writers/Powerpoint.hs +++ b/test/Tests/Writers/Powerpoint.hs @@ -213,4 +213,14 @@ tests = [ pptxTest def { writerTableOfContents = True } "pptx/endnotes.native" "pptx/endnotes_toc.pptx" + , pptxTest + "images" + def + "pptx/images.native" + "pptx/images.pptx" + , pptxTest + "two-column layout" + def + "pptx/two_column.native" + "pptx/two_column.pptx" ] |