diff options
author | Jesse Rosenthal <jrosenthal@jhu.edu> | 2018-02-27 09:34:24 -0500 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2018-02-27 09:34:24 -0500 |
commit | cdaa80e718ac177fb355819fc48c57f77d2a6bd1 (patch) | |
tree | c5e9f8300c91a1228e22f69dbc1c2c7c8d20983a /test/Tests/Writers | |
parent | cdbe45e8ee1c5b87516ad020584576a22fdb28f4 (diff) | |
download | pandoc-cdaa80e718ac177fb355819fc48c57f77d2a6bd1.tar.gz |
Powerpoint writer: add test for table and list syntax
These were never added when the tests were first created.
Output files checked in MS PowerPoint 2013 (Windows 10, VBox). No
corruption, and output as expected.
Diffstat (limited to 'test/Tests/Writers')
-rw-r--r-- | test/Tests/Writers/Powerpoint.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Tests/Writers/Powerpoint.hs b/test/Tests/Writers/Powerpoint.hs index bca39c24f..9af8fc471 100644 --- a/test/Tests/Writers/Powerpoint.hs +++ b/test/Tests/Writers/Powerpoint.hs @@ -53,6 +53,14 @@ tests = groupPptxTests [ pptxTests "Inline formatting" def{ writerSlideLevel = Just 1 } "pptx/slide_breaks.native" "pptx/slide_breaks_slide_level_1.pptx" + , pptxTests "lists" + def + "pptx/lists.native" + "pptx/lists.pptx" + , pptxTests "tables" + def + "pptx/tables.native" + "pptx/tables.pptx" , pptxTests "table of contents" def{ writerTableOfContents = True } "pptx/slide_breaks.native" @@ -81,4 +89,5 @@ tests = groupPptxTests [ pptxTests "Inline formatting" def "pptx/remove_empty_slides.native" "pptx/remove_empty_slides.pptx" + ] |