aboutsummaryrefslogtreecommitdiff
path: root/test/Tests/Writers
diff options
context:
space:
mode:
authorJesse Rosenthal <jrosenthal@jhu.edu>2018-01-22 11:52:03 -0500
committerJesse Rosenthal <jrosenthal@jhu.edu>2018-01-22 11:52:03 -0500
commit145c3f54f989c3c1217b2706655e20e7af137c70 (patch)
tree23322e348f0fd7c093e13c05e20d9fefc4aed0c4 /test/Tests/Writers
parent5cdac2607dcb2ad66e7e9aba3521948669724cda (diff)
downloadpandoc-145c3f54f989c3c1217b2706655e20e7af137c70.tar.gz
Powerpoint writer: Add further tests
Tests added for: - table of contents - endnotes - endnotes with table of contents Powerpoint output checked in MS PowerPoint 2013 (Windows)
Diffstat (limited to 'test/Tests/Writers')
-rw-r--r--test/Tests/Writers/Powerpoint.hs15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/Tests/Writers/Powerpoint.hs b/test/Tests/Writers/Powerpoint.hs
index a90d6193e..f78916dac 100644
--- a/test/Tests/Writers/Powerpoint.hs
+++ b/test/Tests/Writers/Powerpoint.hs
@@ -198,4 +198,19 @@ tests = [ pptxTest
def{ writerSlideLevel = Just 1 }
"pptx/slide_breaks.native"
"pptx/slide_breaks_slide_level_1.pptx"
+ , pptxTest
+ "table of contents"
+ def{ writerTableOfContents = True }
+ "pptx/slide_breaks.native"
+ "pptx/slide_breaks_toc.pptx"
+ , pptxTest
+ "end notes"
+ def
+ "pptx/endnotes.native"
+ "pptx/endnotes.pptx"
+ , pptxTest
+ "end notes, with table of contents"
+ def { writerTableOfContents = True }
+ "pptx/endnotes.native"
+ "pptx/endnotes_toc.pptx"
]