aboutsummaryrefslogtreecommitdiff
path: root/tests/Tests.hs
blob: 34852db7eea5fedcbe7a938017161c3cc564fc13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Main
  ( main
  ) where

import Test.Tasty (defaultMain, testGroup)

import qualified Data.Digest.Sha1Tests
import qualified Data.Digest.Sha2Tests

main :: IO ()
main =
  defaultMain $
  testGroup "btls" [Data.Digest.Sha1Tests.tests, Data.Digest.Sha2Tests.tests]