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