diff options
author | Joey Hess <joey@kitenet.net> | 2011-04-21 16:56:24 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-04-21 16:56:24 -0400 |
commit | b72de39ba469fb7f39be0728a10fe949619c7be0 (patch) | |
tree | 8855cb8996c55c3cd5df857a153e830f5c45695f /test.hs | |
parent | 892593c5efacbc084d19af4b5d7164ededaea7ff (diff) |
add test to ensure hmac remains stable
Diffstat (limited to 'test.hs')
-rw-r--r-- | test.hs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -40,6 +40,7 @@ import qualified Content import qualified Command.DropUnused import qualified Key import qualified Config +import qualified Crypto main :: IO () main = do @@ -63,6 +64,7 @@ quickcheck = TestLabel "quickcheck" $ TestList , qctest "prop_parentDir_basics" Utility.prop_parentDir_basics , qctest "prop_relPathDirToDir_basics" Utility.prop_relPathDirToDir_basics , qctest "prop_cost_sane" Config.prop_cost_sane + , qctest "prop_hmacWithCipher_sane" Crypto.prop_hmacWithCipher_sane ] blackbox :: Test |