mirror of
https://github.com/anoma/juvix.git
synced 2024-12-04 06:23:13 +03:00
12 lines
206 B
Haskell
12 lines
206 B
Haskell
module Scope
|
|
( allTests,
|
|
)
|
|
where
|
|
|
|
import Base
|
|
import Scope.Negative qualified as N
|
|
import Scope.Positive qualified as P
|
|
|
|
allTests :: TestTree
|
|
allTests = testGroup "Scope tests" [P.allTests, N.allTests]
|