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