diff options
author | Julien Tanguy <julien.tanguy@jhome.fr> | 2015-04-14 18:18:26 +0200 |
---|---|---|
committer | Julien Tanguy <julien.tanguy@jhome.fr> | 2015-04-14 18:18:26 +0200 |
commit | b1f77d7e6dcf03dd20c36e1a10429e1b2b9900b1 (patch) | |
tree | 0ce2d7d6164de6c254ec4022072430045109a30f /test/tests.hs | |
parent | 26d38f73993db56811d198a3e0b5c710722dd472 (diff) | |
download | hmacaroons-b1f77d7e6dcf03dd20c36e1a10429e1b2b9900b1.tar.gz hmacaroons-b1f77d7e6dcf03dd20c36e1a10429e1b2b9900b1.tar.zst hmacaroons-b1f77d7e6dcf03dd20c36e1a10429e1b2b9900b1.zip |
Refactor tests
Diffstat (limited to 'test/tests.hs')
-rw-r--r-- | test/tests.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/tests.hs b/test/tests.hs index ba5dafd..85564f0 100644 --- a/test/tests.hs +++ b/test/tests.hs | |||
@@ -10,12 +10,14 @@ import Test.Tasty | |||
10 | import Test.Tasty.HUnit | 10 | import Test.Tasty.HUnit |
11 | 11 | ||
12 | import qualified Crypto.Macaroon.Tests | 12 | import qualified Crypto.Macaroon.Tests |
13 | import qualified Crypto.Macaroon.Serializer.Base64.Tests | ||
13 | 14 | ||
14 | main = defaultMain tests | 15 | main = defaultMain tests |
15 | 16 | ||
16 | tests :: TestTree | 17 | tests :: TestTree |
17 | tests = testGroup "Tests" [ sanityCheck | 18 | tests = testGroup "Tests" [ sanityCheck |
18 | , Crypto.Macaroon.Tests.tests | 19 | , Crypto.Macaroon.Tests.tests |
20 | , Crypto.Macaroon.Serializer.Base64.Tests.tests | ||
19 | ] | 21 | ] |
20 | 22 | ||
21 | sanityCheck :: TestTree | 23 | sanityCheck :: TestTree |