aboutsummaryrefslogtreecommitdiff
path: root/test/Tests
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2019-05-30 08:44:40 +0200
committerAlbert Krewinkel <albert@zeitkraut.de>2019-05-30 08:44:40 +0200
commitf7222370afd50f6ea65f199fd8e4f03101ec8ff4 (patch)
tree2f52001b5775326e0a39df368c475569af85b354 /test/Tests
parent5a82ecaaa19176afc24576fd80b91c9a529c2dcb (diff)
downloadpandoc-f7222370afd50f6ea65f199fd8e4f03101ec8ff4.tar.gz
Lua modules: test pandoc.mediabag
Diffstat (limited to 'test/Tests')
-rw-r--r--test/Tests/Lua/Module.hs11
1 files changed, 8 insertions, 3 deletions
diff --git a/test/Tests/Lua/Module.hs b/test/Tests/Lua/Module.hs
index 324acce04..baa81f4f0 100644
--- a/test/Tests/Lua/Module.hs
+++ b/test/Tests/Lua/Module.hs
@@ -19,9 +19,14 @@ import Tests.Lua (runLuaTest)
tests :: [TestTree]
tests =
- [ testPandocLua "pandoc" ("lua" </> "module" </> "pandoc.lua")
- , testPandocLua "pandoc.types" ("lua" </> "module" </> "pandoc-types.lua")
- , testPandocLua "pandoc.util" ("lua" </> "module" </> "pandoc-utils.lua")
+ [ testPandocLua "pandoc"
+ ("lua" </> "module" </> "pandoc.lua")
+ , testPandocLua "pandoc.mediabag"
+ ("lua" </> "module" </> "pandoc-mediabag.lua")
+ , testPandocLua "pandoc.types"
+ ("lua" </> "module" </> "pandoc-types.lua")
+ , testPandocLua "pandoc.util"
+ ("lua" </> "module" </> "pandoc-utils.lua")
]
testPandocLua :: TestName -> FilePath -> TestTree