1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-04 06:23:13 +03:00
juvix/test/Scope.hs
2022-04-05 19:57:21 +02:00

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]