agora/agora-test/Spec.hs
2022-03-09 22:00:02 +01:00

29 lines
647 B
Haskell

--------------------------------------------------------------------------------
import Prelude
--------------------------------------------------------------------------------
import Test.Tasty (defaultMain, testGroup)
--------------------------------------------------------------------------------
import Spec.Int
import Spec.Stake qualified as Stake
main :: IO ()
main =
defaultMain $
testGroup
"test suite"
[ testGroup
"sample-tests"
Stake.tests
, testGroup
"apropos-tx"
[ testGroup
"Int"
[ intPlutarchTests
]
]
]