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