diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2017-02-12 17:09:07 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2017-02-12 17:09:07 +0300 |
commit | 48f809384ab94912234b95087cef6b30b26935b1 (patch) | |
tree | d833ef6579ab336fe899293ecf6547c849968987 /test/Tests | |
parent | 48c78713c8faf445bed23ae3005abdba3273346b (diff) | |
download | pandoc-48f809384ab94912234b95087cef6b30b26935b1.tar.gz |
Add Org writer unit tests
Diffstat (limited to 'test/Tests')
-rw-r--r-- | test/Tests/Writers/Org.hs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/Tests/Writers/Org.hs b/test/Tests/Writers/Org.hs new file mode 100644 index 000000000..e2c58327b --- /dev/null +++ b/test/Tests/Writers/Org.hs @@ -0,0 +1,25 @@ +{-# LANGUAGE OverloadedStrings #-} +module Tests.Writers.Org (tests) where + +import Test.Framework +import Text.Pandoc.Builder +import Text.Pandoc +import Tests.Helpers +import Text.Pandoc.Arbitrary() + +infix 4 =: +(=:) :: (ToString a, ToPandoc a) + => String -> (a, String) -> Test +(=:) = test (purely (writeOrg def . toPandoc)) + +tests :: [Test] +tests = [ testGroup "links" + -- See http://orgmode.org/manual/Internal-links.html#Internal-links + [ "simple link" + =: link "/url" "" "foo" + =?> "[[/url][foo]]" + , "internal link to anchor" + =: link "#my-custom-id" "" "#my-custom-id" + =?> "[[#my-custom-id]]" + ] + ] |