aboutsummaryrefslogtreecommitdiff
path: root/tests/Tests.hs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Tests.hs')
-rw-r--r--tests/Tests.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/Tests.hs b/tests/Tests.hs
index 565ab16..342680d 100644
--- a/tests/Tests.hs
+++ b/tests/Tests.hs
@@ -5,6 +5,8 @@ module Main
import Test.Tasty (defaultMain, testGroup)
import qualified Data.DigestTests
+import qualified Data.HmacTests
main :: IO ()
-main = defaultMain $ testGroup "btls" [Data.DigestTests.tests]
+main =
+ defaultMain $ testGroup "btls" [Data.DigestTests.tests, Data.HmacTests.tests]