aboutsummaryrefslogtreecommitdiff
path: root/test/test-pandoc.hs
diff options
context:
space:
mode:
authorAlbert Krewinkel <[email protected]>2022-09-29 17:24:31 +0200
committerJohn MacFarlane <[email protected]>2022-09-30 08:33:40 -0700
commit5be9052f5fb7283372b3d5497bef499718a34992 (patch)
tree80e5805786ef7ab08f363135861e1aa9c8868f6f /test/test-pandoc.hs
parent79980eee4a1854921d7fb8b14848894b53cc21a7 (diff)
[API Change] Extract Lua code into new package pandoc-lua-engine
The flag 'lua53` must now be used with that package if pandoc is to be compiled against Lua 5.3.
Diffstat (limited to 'test/test-pandoc.hs')
-rw-r--r--test/test-pandoc.hs8
1 files changed, 1 insertions, 7 deletions
diff --git a/test/test-pandoc.hs b/test/test-pandoc.hs
index 467e264f0..73841d29b 100644
--- a/test/test-pandoc.hs
+++ b/test/test-pandoc.hs
@@ -11,8 +11,6 @@ import Text.Pandoc.Scripting (noEngine)
import GHC.IO.Encoding
import Test.Tasty
import qualified Tests.Command
-import qualified Tests.Lua
-import qualified Tests.Lua.Module
import qualified Tests.Old
import qualified Tests.Readers.Creole
import qualified Tests.Readers.Docx
@@ -100,10 +98,6 @@ tests pandocPath = testGroup "pandoc tests"
, testGroup "FB2" Tests.Readers.FB2.tests
, testGroup "DokuWiki" Tests.Readers.DokuWiki.tests
]
- , testGroup "Lua"
- [ testGroup "Lua filters" Tests.Lua.tests
- , testGroup "Lua modules" Tests.Lua.Module.tests
- ]
]
main :: IO ()
@@ -114,7 +108,7 @@ main = do
"--emulate":args' -> -- emulate pandoc executable
E.catch
(parseOptionsFromArgs (options noEngine) defaultOpts "pandoc" args'
- >>= convertWithOpts)
+ >>= convertWithOpts noEngine)
(handleError . Left)
_ -> inDirectory "test" $ do
fp <- getExecutablePath