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

20 lines
287 B
Haskell
Raw Normal View History

2022-02-15 16:12:53 +03:00
module Main (main) where
import Base
import qualified TypeCheck
2022-02-18 15:01:42 +03:00
import qualified Scope
2022-02-15 16:12:53 +03:00
negatives :: TestTree
2022-02-18 15:01:42 +03:00
negatives = testGroup "MiniJuvix tests" $
2022-02-15 16:12:53 +03:00
[
Scope.allTests,
TypeCheck.allTests
2022-02-18 15:01:42 +03:00
]
2022-02-15 16:12:53 +03:00
allTests :: TestTree
allTests = negatives
main :: IO ()
main = defaultMain allTests