agora/agora-test/Spec.hs
2022-03-09 19:32:13 +01:00

22 lines
476 B
Haskell

--------------------------------------------------------------------------------
import Prelude
--------------------------------------------------------------------------------
import Test.Tasty (defaultMain, testGroup)
--------------------------------------------------------------------------------
import Spec.Int
main :: IO ()
main =
defaultMain $
testGroup
"apropos-tx"
[ testGroup
"Int"
[ intPlutarchTests
]
]