aboutsummaryrefslogtreecommitdiff
path: root/test/Tests/Lua
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-05-30 10:45:06 -0400
committerGitHub <noreply@github.com>2019-05-30 10:45:06 -0400
commitd68799570859e64d2fdefb6dde15abfb6553b1a5 (patch)
tree2f52001b5775326e0a39df368c475569af85b354 /test/Tests/Lua
parent8507d98a1534ba4049e4c1ca3671ee41a1f56c70 (diff)
parentf7222370afd50f6ea65f199fd8e4f03101ec8ff4 (diff)
downloadpandoc-d68799570859e64d2fdefb6dde15abfb6553b1a5.tar.gz
Merge pull request #5312 from tarleb/pandoc-mediabag-extension
Pandoc mediabag extension
Diffstat (limited to 'test/Tests/Lua')
-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