aboutsummaryrefslogtreecommitdiff
path: root/test/test-pandoc.hs
diff options
context:
space:
mode:
Diffstat (limited to 'test/test-pandoc.hs')
-rw-r--r--test/test-pandoc.hs6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/test-pandoc.hs b/test/test-pandoc.hs
index 64f381021..775f998ca 100644
--- a/test/test-pandoc.hs
+++ b/test/test-pandoc.hs
@@ -8,6 +8,7 @@ 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
@@ -84,7 +85,10 @@ tests pandocPath = testGroup "pandoc tests"
, testGroup "FB2" Tests.Readers.FB2.tests
, testGroup "DokuWiki" Tests.Readers.DokuWiki.tests
]
- , testGroup "Lua filters" Tests.Lua.tests
+ , testGroup "Lua"
+ [ testGroup "Lua filters" Tests.Lua.tests
+ , testGroup "Lua modules" Tests.Lua.Module.tests
+ ]
]
main :: IO ()