summaryrefslogtreecommitdiff
path: root/test/test-pandoc.hs
diff options
context:
space:
mode:
authorJesse Rosenthal <jrosenthal@jhu.edu>2017-12-28 10:39:47 -0500
committerJesse Rosenthal <jrosenthal@jhu.edu>2017-12-28 10:51:03 -0500
commitc1fbf7257b5a51325e4057ce4921c4cc2a484d61 (patch)
tree36a5d4885f609f188689052c93545320fa64ee11 /test/test-pandoc.hs
parentc6b5d651611178dab3e56772f6fba0db55a2e75d (diff)
PowerPoint writer: Introduce beginning of tests
This is the beginning of a test suite for the powerpoint writer. Initial tests are for the number of slides. Note that at the moment it does not test against corruption in Microsoft PowerPoint; it just tests that certain outcomes work as expected. More tests will be added. This test framework uses the PandocPure monad introduced with Pandoc 2.0.
Diffstat (limited to 'test/test-pandoc.hs')
-rw-r--r--test/test-pandoc.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test-pandoc.hs b/test/test-pandoc.hs
index ff852ee0e..4cf1a952d 100644
--- a/test/test-pandoc.hs
+++ b/test/test-pandoc.hs
@@ -33,6 +33,7 @@ import qualified Tests.Writers.Muse
import qualified Tests.Writers.Native
import qualified Tests.Writers.Org
import qualified Tests.Writers.Plain
+import qualified Tests.Writers.Powerpoint
import qualified Tests.Writers.RST
import qualified Tests.Writers.TEI
import Text.Pandoc.Shared (inDirectory)
@@ -57,6 +58,7 @@ tests = testGroup "pandoc tests" [ Tests.Command.tests
, testGroup "TEI" Tests.Writers.TEI.tests
, testGroup "Muse" Tests.Writers.Muse.tests
, testGroup "FB2" Tests.Writers.FB2.tests
+ , testGroup "PowerPoint" Tests.Writers.Powerpoint.tests
]
, testGroup "Readers"
[ testGroup "LaTeX" Tests.Readers.LaTeX.tests