diff options
Diffstat (limited to 'test/Main.hs')
-rw-r--r-- | test/Main.hs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Main.hs b/test/Main.hs new file mode 100644 index 0000000..8847a07 --- /dev/null +++ b/test/Main.hs @@ -0,0 +1,10 @@ +module Main (main) where + +import Test.Tasty + +import qualified MindTest + +main :: IO () +main = defaultMain $ testGroup "all tests" $ + [ MindTest.suite + ] |