aboutsummaryrefslogtreecommitdiff
path: root/tests/Tests.hs
blob: 565ab169499febff0a6a611f56cf611ad324417f (plain)
1
2
3
4
5
6
7
8
9
10
module Main
  ( main
  ) where

import Test.Tasty (defaultMain, testGroup)

import qualified Data.DigestTests

main :: IO ()
main = defaultMain $ testGroup "btls" [Data.DigestTests.tests]