]> git.immae.eu Git - github/fretlink/hmacaroons.git/blame - test/main.hs
Typos and stylish-haskell
[github/fretlink/hmacaroons.git] / test / main.hs
CommitLineData
46af385c
JT
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
b92e3c15 9import qualified Crypto.Macaroon.Verifier.Tests
46af385c
JT
10
11main = defaultMain tests
12
13tests :: TestTree
14tests = 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