mirror of
https://github.com/FiloSpaTeam/plutus-pioneer-program.git
synced 2024-11-15 03:12:34 +01:00
17 lines
262 B
Haskell
17 lines
262 B
Haskell
|
module Main
|
||
|
( main
|
||
|
) where
|
||
|
|
||
|
import qualified Spec.Model
|
||
|
import qualified Spec.Trace
|
||
|
import Test.Tasty
|
||
|
|
||
|
main :: IO ()
|
||
|
main = defaultMain tests
|
||
|
|
||
|
tests :: TestTree
|
||
|
tests = testGroup "token sale"
|
||
|
[ Spec.Trace.tests
|
||
|
, Spec.Model.tests
|
||
|
]
|