29 lines
647 B
Haskell
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
|
|
]
|
|
]
|
|
]
|