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

18 lines
238 B
Haskell

module Main (main) where
import Base
import qualified Scope
negatives :: TestTree
negatives = testGroup "MiniJuvix tests" $
[
Scope.allTests
]
allTests :: TestTree
allTests = negatives
main :: IO ()
main = defaultMain allTests