]> git.immae.eu Git - github/fretlink/hmacaroons.git/blame_incremental - test/main.hs
Typos and stylish-haskell
[github/fretlink/hmacaroons.git] / test / main.hs
... / ...
CommitLineData
1module Main where
2
3import Test.Tasty
4import Test.Tasty.HUnit
5
6import qualified Sanity
7import qualified Crypto.Macaroon.Tests
8import qualified Crypto.Macaroon.Serializer.Base64.Tests
9import qualified Crypto.Macaroon.Verifier.Tests
10
11main = defaultMain tests
12
13tests :: TestTree
14tests = testGroup "Tests" [ Sanity.tests
15 , Crypto.Macaroon.Tests.tests
16 , Crypto.Macaroon.Serializer.Base64.Tests.tests
17 , Crypto.Macaroon.Verifier.Tests.tests
18 ]
19