mirror of
https://github.com/FiloSpaTeam/plutus-pioneer-program.git
synced 2024-11-14 02:42:35 +01:00
20 lines
400 B
Haskell
20 lines
400 B
Haskell
module Main
|
|
( main
|
|
) where
|
|
|
|
import qualified Spec.Model
|
|
import qualified Spec.ModelWithClose
|
|
import qualified Spec.Trace
|
|
import qualified Spec.TraceWithClose
|
|
import Test.Tasty
|
|
|
|
main :: IO ()
|
|
main = defaultMain tests
|
|
|
|
tests :: TestTree
|
|
tests = testGroup "token sale"
|
|
[ Spec.Trace.tests
|
|
, Spec.TraceWithClose.tests
|
|
, Spec.Model.tests
|
|
, Spec.ModelWithClose.tests
|
|
]
|