1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-13 19:49:20 +03:00
juvix/test/Core/Eval.hs
2022-09-06 15:26:48 +02:00

9 lines
219 B
Haskell

module Core.Eval where
import Base
import Core.Eval.Negative qualified as EvalN
import Core.Eval.Positive qualified as EvalP
allTests :: TestTree
allTests = testGroup "JuvixCore eval" [EvalP.allTests, EvalN.allTests]