1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-02 10:47:32 +03:00
juvix/test/Examples.hs
Paul Cadman 4044676628
Add a test suite for milestone examples (#1920)
In this PR I will add tests for the example programs in
`examples/milestone`.

There's currently an runtime assertion error generated by the Hanoi
example https://github.com/anoma/juvix/issues/1919, so it'd be good to
test these programs in the future.
2023-03-24 13:16:26 +00:00

8 lines
176 B
Haskell

module Examples where
import Base
import Examples.Positive qualified as P
allTests :: TestTree
allTests = testGroup "Juvix milestone examples compilation tests" [P.allTests]