mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 14:28:08 +03:00
3c3e442c81
* 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)
16 lines
329 B
Haskell
16 lines
329 B
Haskell
module BackendGeb where
|
|
|
|
import BackendGeb.Compilation qualified as Compilation
|
|
import BackendGeb.Eval qualified as Eval
|
|
import BackendGeb.FromCore qualified as FromCore
|
|
import Base
|
|
|
|
allTests :: TestTree
|
|
allTests =
|
|
testGroup
|
|
"BackendGeb tests"
|
|
[ Eval.allTests,
|
|
FromCore.allTests,
|
|
Compilation.allTests
|
|
]
|