mirror of
https://github.com/anoma/juvix.git
synced 2024-12-02 10:47:32 +03:00
4044676628
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.
8 lines
176 B
Haskell
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]
|