summaryrefslogtreecommitdiff
path: root/test.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-01-04 21:27:08 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-01-04 21:27:08 -0400
commita323463726096bba15b6a353d35bc1eb0ae238b9 (patch)
tree5039b8e1505f41a716d4543c0235255d701fb4ab /test.hs
parentaedc46caca6f24755c914f105d1ac6d9787a7755 (diff)
add more tests
Diffstat (limited to 'test.hs')
-rw-r--r--test.hs15
1 files changed, 8 insertions, 7 deletions
diff --git a/test.hs b/test.hs
index 28b54b78b..77a8606b3 100644
--- a/test.hs
+++ b/test.hs
@@ -7,14 +7,15 @@ 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
+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
+ , qctest "prop_parentDir_basics" prop_parentDir_basics
+ , qctest "prop_relPathDirToDir_basics" prop_relPathDirToDir_basics
]
main :: IO (Counts, Int)
main = runVerboseTests (TestList alltests)
-