mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-13 17:25:29 +03:00
19 lines
215 B
Idris
19 lines
215 B
Idris
module Test
|
|
|
|
import Test.Golden
|
|
|
|
|
|
tests : TestPool
|
|
tests
|
|
= MkTestPool "Hello World"
|
|
[]
|
|
Nothing
|
|
[ "000-hello"]
|
|
|
|
export
|
|
main : IO ()
|
|
main = runner [ tests ]
|
|
|
|
|
|
-- [ EOF ]
|