mirror of
https://github.com/anoma/juvix.git
synced 2024-12-13 19:49:20 +03:00
12 lines
172 B
Haskell
12 lines
172 B
Haskell
|
module BackendGeb where
|
||
|
|
||
|
import BackendGeb.Eval qualified as Eval
|
||
|
import Base
|
||
|
|
||
|
allTests :: TestTree
|
||
|
allTests =
|
||
|
testGroup
|
||
|
"BackendGeb tests"
|
||
|
[ Eval.allTests
|
||
|
]
|