diff options
author | Joey Hess <joey@kitenet.net> | 2011-01-04 21:05:31 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-01-04 21:05:31 -0400 |
commit | 759e860e4b6c514b74cafb2c0dd9c52c4d59316b (patch) | |
tree | ea09994423b910f2f1f91d46f9e84085f7088c8f /test.hs | |
parent | f1b747e6d9fae2b365f65fd43c6295da503218bd (diff) |
add testcoverage target using hpc
added a test for key read and show
Diffstat (limited to 'test.hs')
-rw-r--r-- | test.hs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -4,14 +4,17 @@ import Test.HUnit.Tools import GitRepo import Locations import Utility +import TypeInternals alltests :: [Test] alltests = [ qctest "prop_idempotent_deencode" prop_idempotent_deencode, qctest "prop_idempotent_fileKey" prop_idempotent_fileKey, + qctest "prop_idempotent_key_read_show" prop_idempotent_key_read_show, qctest "prop_idempotent_shellescape" prop_idempotent_shellescape, qctest "prop_idempotent_shellescape_multiword" prop_idempotent_shellescape_multiword ] main :: IO (Counts, Int) main = runVerboseTests (TestList alltests) + |