]> git.immae.eu Git - github/fretlink/hmacaroons.git/blob - test/main.hs
Add coveralls.io badge to README
[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 Crypto.Macaroon.Serializer.Base64.Tests
7 import qualified Crypto.Macaroon.Tests
8 import qualified Crypto.Macaroon.Verifier.Internal.Tests
9 import qualified Crypto.Macaroon.Verifier.Tests
10 import qualified Sanity
11
12 main = defaultMain tests
13
14 tests :: TestTree
15 tests = 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