blob: 48519b9d41410f9c0028ab7e480a78a38b3b3a1f (
plain) (
tree)
|
|
module Main where
import Test.Tasty
import Test.Tasty.HUnit
import qualified Sanity
import qualified Crypto.Macaroon.Tests
import qualified Crypto.Macaroon.Serializer.Base64.Tests
main = defaultMain tests
tests :: TestTree
tests = testGroup "Tests" [ Sanity.tests
, Crypto.Macaroon.Tests.tests
, Crypto.Macaroon.Serializer.Base64.Tests.tests
]
|