]>
Commit | Line | Data |
---|---|---|
46af385c JT |
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 | |
b92e3c15 | 9 | import qualified Crypto.Macaroon.Verifier.Tests |
46af385c JT |
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 | |
b92e3c15 | 17 | , Crypto.Macaroon.Verifier.Tests.tests |
46af385c JT |
18 | ] |
19 |