aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/main.hs
diff options
context:
space:
mode:
authorJulien Tanguy <julien.tanguy@jhome.fr>2015-04-15 11:27:54 +0200
committerJulien Tanguy <julien.tanguy@jhome.fr>2015-04-15 11:27:54 +0200
commit46af385cc6f7c7e378ef7866a3da4ad9fb6e941c (patch)
tree1e78ef559d84875cb377ae2ff148d13cf35f0f1a /test/main.hs
parentb1f77d7e6dcf03dd20c36e1a10429e1b2b9900b1 (diff)
downloadhmacaroons-46af385cc6f7c7e378ef7866a3da4ad9fb6e941c.tar.gz
hmacaroons-46af385cc6f7c7e378ef7866a3da4ad9fb6e941c.tar.zst
hmacaroons-46af385cc6f7c7e378ef7866a3da4ad9fb6e941c.zip
Extract sanity check
Diffstat (limited to 'test/main.hs')
-rw-r--r--test/main.hs17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/main.hs b/test/main.hs
new file mode 100644
index 0000000..48519b9
--- /dev/null
+++ b/test/main.hs
@@ -0,0 +1,17 @@
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