1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-12 04:43:18 +03:00
juvix/test/Scope.hs

12 lines
206 B
Haskell
Raw Normal View History

2022-04-05 20:57:21 +03:00
module Scope
( allTests,
)
where
2022-02-15 16:12:53 +03:00
2022-02-18 15:01:42 +03:00
import Base
2022-04-05 20:57:21 +03:00
import Scope.Negative qualified as N
import Scope.Positive qualified as P
2022-02-18 15:01:42 +03:00
allTests :: TestTree
allTests = testGroup "Scope tests" [P.allTests, N.allTests]