aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'test/main.hs')
-rw-r--r--test/main.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/main.hs b/test/main.hs
index 48519b9..3edbe54 100644
--- a/test/main.hs
+++ b/test/main.hs
@@ -6,6 +6,7 @@ import Test.Tasty.HUnit
6import qualified Sanity 6import qualified Sanity
7import qualified Crypto.Macaroon.Tests 7import qualified Crypto.Macaroon.Tests
8import qualified Crypto.Macaroon.Serializer.Base64.Tests 8import qualified Crypto.Macaroon.Serializer.Base64.Tests
9import qualified Crypto.Macaroon.Verifier.Tests
9 10
10main = defaultMain tests 11main = defaultMain tests
11 12
@@ -13,5 +14,6 @@ tests :: TestTree
13tests = testGroup "Tests" [ Sanity.tests 14tests = testGroup "Tests" [ Sanity.tests
14 , Crypto.Macaroon.Tests.tests 15 , Crypto.Macaroon.Tests.tests
15 , Crypto.Macaroon.Serializer.Base64.Tests.tests 16 , Crypto.Macaroon.Serializer.Base64.Tests.tests
17 , Crypto.Macaroon.Verifier.Tests.tests
16 ] 18 ]
17 19