]> git.immae.eu Git - github/fretlink/hmacaroons.git/blob - test/main.hs
Basic verification of macaroons
[github/fretlink/hmacaroons.git] / test / main.hs
1 module Main where
2
3 import Test.Tasty
4 import Test.Tasty.HUnit
5
6 import qualified Sanity
7 import qualified Crypto.Macaroon.Tests
8 import qualified Crypto.Macaroon.Serializer.Base64.Tests
9 import qualified Crypto.Macaroon.Verifier.Tests
10
11 main = defaultMain tests
12
13 tests :: TestTree
14 tests = testGroup "Tests" [ Sanity.tests
15 , Crypto.Macaroon.Tests.tests
16 , Crypto.Macaroon.Serializer.Base64.Tests.tests
17 , Crypto.Macaroon.Verifier.Tests.tests
18 ]
19