agora/agora-test/Spec/Effect/TreasuryWithdrawal.hs
Seungheon Oh 82dd53efcf
Restructured Testings
Separated the samples and test sets
2022-04-21 16:44:59 -05:00

24 lines
610 B
Haskell

{- |
Module : Spec.Effect.TreasuryWithdrawalEffect
Maintainer : seungheon.ooh@gmail.com
Description: Sample based testing for Treasury Withdrawal Effect
This module tests the Treasury Withdrawal Effect.
-}
module Spec.Effect.TreasuryWithdrawal (currSymbol, signer, validator, validatorHashTN, scriptContext1, tests) where
import Spec.Sample.Effect.TreasuryWithdrawal
import Agora.Effect.TreasuryWithdrawal
import Spec.Util
import Test.Tasty
tests :: [TestTree]
tests =
[ testGroup
"effect"
[effectSucceedsWith "test1" (treasuryWithdrawalValidator currSymbol) datum scriptContext1]
]