mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 04:43:18 +03:00
31627a0ce5
* Closes #2191
10 lines
275 B
Haskell
10 lines
275 B
Haskell
module VampIR where
|
|
|
|
import Base
|
|
import VampIR.Compilation.Negative qualified as N
|
|
import VampIR.Compilation.Positive qualified as PC
|
|
import VampIR.Core.Positive qualified as PT
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "VampIR tests" [PT.allTests, PC.allTests, N.allTests]
|