]> git.immae.eu Git - github/fretlink/hmacaroons.git/blob - test/main.hs
Add some notes on macaroons
[github/fretlink/hmacaroons.git] / test / main.hs
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