blob: 67ebcd56ad988d0ac13ab21186fe7153737d668f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
module Main where
import Test.Tasty
import Test.Tasty.HUnit
import qualified Crypto.Macaroon.Serializer.Base64.Tests
import qualified Crypto.Macaroon.Tests
import qualified Crypto.Macaroon.Verifier.Internal.Tests
import qualified Crypto.Macaroon.Verifier.Tests
import qualified Sanity
main = defaultMain tests
tests :: TestTree
tests = testGroup "Tests" [ Sanity.tests
, Crypto.Macaroon.Tests.tests
, Crypto.Macaroon.Serializer.Base64.Tests.tests
, Crypto.Macaroon.Verifier.Tests.tests
, Crypto.Macaroon.Verifier.Internal.Tests.tests
]
|