1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-11 08:25:46 +03:00
juvix/test/BackendGeb/Compilation.hs
Łukasz Czajka 3c3e442c81
End-to-end Geb compilation tests (#1942)
* Adds end-to-end tests for compiling Juvix to Geb
* Fixes bugs in the Core-to-Geb translation (`<=` and `let`)
* Fixes a bug in the Geb evaluator (equality on integers)
2023-03-29 14:02:40 +02:00

11 lines
190 B
Haskell

module BackendGeb.Compilation where
import BackendGeb.Compilation.Positive qualified as P
import Base
allTests :: TestTree
allTests =
testGroup
"Compilation to Geb"
[P.allTests]