mirror of
https://github.com/anoma/juvix.git
synced 2025-01-07 08:08:44 +03:00
16 lines
311 B
Haskell
16 lines
311 B
Haskell
|
module Core.Print.Positive where
|
||
|
|
||
|
import Base
|
||
|
import Core.Eval.Positive qualified as Eval
|
||
|
import Core.Print.Base
|
||
|
|
||
|
allTests :: TestTree
|
||
|
allTests = testGroup "JuvixCore print tests" (map liftTest Eval.tests)
|
||
|
|
||
|
liftTest :: Eval.PosTest -> TestTree
|
||
|
liftTest _testEval =
|
||
|
fromTest
|
||
|
Test
|
||
|
{ _testEval
|
||
|
}
|