mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 14:28:08 +03:00
11 lines
216 B
Haskell
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]
|