mirror of
https://github.com/anoma/juvix.git
synced 2024-12-14 08:27:03 +03:00
11 lines
157 B
Haskell
11 lines
157 B
Haskell
|
module Arity
|
||
|
( allTests,
|
||
|
)
|
||
|
where
|
||
|
|
||
|
import Arity.Negative qualified as N
|
||
|
import Base
|
||
|
|
||
|
allTests :: TestTree
|
||
|
allTests = testGroup "Arity tests" [N.allTests]
|