1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-12 14:28:08 +03:00
juvix/test/Scope.hs
2022-02-18 13:01:42 +01:00

11 lines
216 B
Haskell

module Scope (
allTests
) where
import Base
import qualified Scope.Negative as N
import qualified Scope.Positive as P
allTests :: TestTree
allTests = testGroup "Scope tests" [P.allTests, N.allTests]