mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 14:28:08 +03:00
20 lines
287 B
Haskell
20 lines
287 B
Haskell
module Main (main) where
|
|
|
|
import Base
|
|
|
|
import qualified TypeCheck
|
|
import qualified Scope
|
|
|
|
negatives :: TestTree
|
|
negatives = testGroup "MiniJuvix tests" $
|
|
[
|
|
Scope.allTests,
|
|
TypeCheck.allTests
|
|
]
|
|
|
|
allTests :: TestTree
|
|
allTests = negatives
|
|
|
|
main :: IO ()
|
|
main = defaultMain allTests
|