1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-12 14:28:08 +03:00
juvix/test/Main.hs

19 lines
304 B
Haskell
Raw Normal View History

2022-02-15 16:12:53 +03:00
module Main (main) where
import Base
import MonoJuvix qualified
2022-04-05 20:57:21 +03:00
import Scope qualified
import TypeCheck qualified
2022-02-15 16:12:53 +03:00
allTests :: TestTree
allTests =
2022-04-05 20:57:21 +03:00
testGroup
"MiniJuvix tests"
[ Scope.allTests,
TypeCheck.allTests,
MonoJuvix.allTests
2022-04-05 20:57:21 +03:00
]
2022-02-15 16:12:53 +03:00
main :: IO ()
main = defaultMain allTests