]>
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 | |
9 | ||
10 | main = defaultMain tests | |
11 | ||
12 | tests :: TestTree | |
13 | tests = testGroup "Tests" [ Sanity.tests | |
14 | , Crypto.Macaroon.Tests.tests | |
15 | , Crypto.Macaroon.Serializer.Base64.Tests.tests | |
16 | ] | |
17 |