aboutsummaryrefslogtreecommitdiff
path: root/test/Tests/Writers/Plain.hs.orig
diff options
context:
space:
mode:
Diffstat (limited to 'test/Tests/Writers/Plain.hs.orig')
-rw-r--r--test/Tests/Writers/Plain.hs.orig21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/Tests/Writers/Plain.hs.orig b/test/Tests/Writers/Plain.hs.orig
deleted file mode 100644
index ab09bca26..000000000
--- a/test/Tests/Writers/Plain.hs.orig
+++ /dev/null
@@ -1,21 +0,0 @@
-{-# LANGUAGE OverloadedStrings #-}
-module Tests.Writers.Plain (tests) where
-
-import Test.Tasty
-import Tests.Helpers
-import Text.Pandoc
-import Text.Pandoc.Arbitrary ()
-import Text.Pandoc.Builder
-
-
-infix 4 =:
-(=:) :: (ToString a, ToPandoc a)
- => String -> (a, String) -> TestTree
-(=:) = test (purely (writePlain def) . toPandoc)
-
-
-tests :: [TestTree]
-tests = [ "strongly emphasized text to uppercase"
- =: strong "Straße"
- =?> "STRASSE"
- ]