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

import Test.Tasty (defaultMain, testGroup)

import qualified Data.Digest.Sha2Tests

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