Added review changes

This commit is contained in:
Jack Hodgkinson 2022-05-06 10:36:21 +01:00
parent 6aa4ed732a
commit 7572bb4da2
5 changed files with 85 additions and 115 deletions

View file

@ -1,14 +1,3 @@
{- |
Module: Main
Description: Agora test suite.
Maintainer: emi@haskell.fyi
This module is the root of Agora's test suite.
-}
module Main (main) where
--------------------------------------------------------------------------------
import Prelude
--------------------------------------------------------------------------------
@ -42,6 +31,12 @@ main =
, testGroup
"Proposal tests"
Proposal.tests
, testGroup
"AuthorityToken tests"
AuthorityToken.tests
, testGroup
"Treasury tests"
Treasury.tests
, testGroup
"Multisig tests"
[ testGroup
@ -50,10 +45,4 @@ main =
, MultiSig.genTests
]
]
, testGroup
"AuthorityToken tests"
AuthorityToken.tests
, testGroup
"Treasury tests"
Treasury.tests
]