]> git.immae.eu Git - github/fretlink/hmacaroons.git/blame - test/main.hs
Nixify package & documentation
[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
9
10main = defaultMain tests
11
12tests :: TestTree
13tests = testGroup "Tests" [ Sanity.tests
14 , Crypto.Macaroon.Tests.tests
15 , Crypto.Macaroon.Serializer.Base64.Tests.tests
16 ]
17