diff options
author | Joey Hess <joey@kitenet.net> | 2012-09-07 23:23:52 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-09-07 23:23:52 -0400 |
commit | 92df8250fa7c6d8c36ca214e45c7b5a6c9d307a9 (patch) | |
tree | 31dff3d544a99f3b53a2a4747d9286dbd52c5b2a /test.hs | |
parent | c12caf0a4e665d121c7ffd5a992306f7511bc305 (diff) |
broke out Verifiable to a utility library, and added a quickcheck test
Diffstat (limited to 'test.hs')
-rw-r--r-- | test.hs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -47,6 +47,7 @@ import qualified Utility.FileMode import qualified Utility.Gpg import qualified Build.SysConfig import qualified Utility.Format +import qualified Utility.Verifiable -- for quickcheck instance Arbitrary Types.Key.Key where @@ -89,6 +90,7 @@ quickcheck = TestLabel "quickcheck" $ TestList , qctest "prop_hmacWithCipher_sane" Crypto.prop_hmacWithCipher_sane , qctest "prop_TimeStamp_sane" Logs.UUIDBased.prop_TimeStamp_sane , qctest "prop_addLog_sane" Logs.UUIDBased.prop_addLog_sane + , qctest "prop_verifiable_sane" Utility.Verifiable.prop_verifiable_sane ] blackbox :: Test |