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