mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 18:21:47 +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 ]
|