Merge branch 'master' into connor/governor

This commit is contained in:
fanghr 2022-05-11 17:40:38 +08:00
commit cee0f4a67a
No known key found for this signature in database
GPG key ID: 35CD9A71CD5D5870
9 changed files with 421 additions and 24 deletions

View file

@ -1,5 +1,3 @@
--------------------------------------------------------------------------------
import Prelude
--------------------------------------------------------------------------------
@ -14,6 +12,7 @@ import Spec.Governor qualified as Governor
import Spec.Model.MultiSig qualified as MultiSig
import Spec.Proposal qualified as Proposal
import Spec.Stake qualified as Stake
import Spec.Treasury qualified as Treasury
-- | The Agora test suite.
main :: IO ()
@ -33,6 +32,18 @@ main =
, testGroup
"Proposal tests"
Proposal.tests
, testGroup
"AuthorityToken tests"
AuthorityToken.tests
, testGroup
"Treasury tests"
Treasury.tests
, testGroup
"AuthorityToken tests"
AuthorityToken.tests
, testGroup
"Governor tests"
Governor.tests
, testGroup
"Multisig tests"
[ testGroup
@ -41,10 +52,4 @@ main =
, MultiSig.genTests
]
]
, testGroup
"AuthorityToken tests"
AuthorityToken.tests
, testGroup
"Governor tests"
Governor.tests
]