aboutsummaryrefslogtreecommitdiff
path: root/test/Tests
diff options
context:
space:
mode:
authorYan Pas <yanp.bugz@gmail.com>2018-02-25 03:34:17 +0300
committerYan Pas <yanp.bugz@gmail.com>2018-02-25 03:34:17 +0300
commitfd3676a568589f07ad0707c07b2a9f87df6e2f6c (patch)
tree0a96fe3ba875464edecfae225814940aaad3b05a /test/Tests
parent2eab8f465410db57a7df27631a83058f8f480d89 (diff)
downloadpandoc-fd3676a568589f07ad0707c07b2a9f87df6e2f6c.tar.gz
initial
Diffstat (limited to 'test/Tests')
-rw-r--r--test/Tests/Readers/Man.hs16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/Tests/Readers/Man.hs b/test/Tests/Readers/Man.hs
new file mode 100644
index 000000000..5dc91544b
--- /dev/null
+++ b/test/Tests/Readers/Man.hs
@@ -0,0 +1,16 @@
+{-# LANGUAGE OverloadedStrings #-}
+module Tests.Readers.Man (tests) where
+
+import Data.Text (Text)
+import qualified Data.Text as T
+import Test.Tasty
+import Tests.Helpers
+import Text.Pandoc
+import Text.Pandoc.Arbitrary ()
+import Text.Pandoc.Builder
+
+creole :: Text -> Pandoc
+creole = purely $ readCreole def{ readerStandalone = True }
+
+tests :: [TestTree]
+tests = [] \ No newline at end of file