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

11 lines
216 B
Haskell
Raw Normal View History

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