summaryrefslogtreecommitdiff
path: root/test.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-12-31 20:33:43 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-12-31 20:33:43 -0400
commit5c29bb3b7c280b3e2db26dbcb38f063430f731d6 (patch)
treef996fc2565d3198f7aaebb29264bf8658fb79196 /test.hs
parente153a116bb45eac409a7d4b0a07c5ba10634bd36 (diff)
git-annex-shell can now be used as a login shell
Diffstat (limited to 'test.hs')
-rw-r--r--test.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/test.hs b/test.hs
index 9a6e05a97..9d64e9260 100644
--- a/test.hs
+++ b/test.hs
@@ -3,11 +3,14 @@ import Test.HUnit.Tools
import GitRepo
import Locations
+import Utility
alltests :: [Test]
alltests = [
qctest "prop_idempotent_deencode" prop_idempotent_deencode,
- qctest "prop_idempotent_fileKey" prop_idempotent_fileKey
+ qctest "prop_idempotent_fileKey" prop_idempotent_fileKey,
+ qctest "prop_idempotent_shellescape" prop_idempotent_shellescape,
+ qctest "prop_idempotent_shellescape_multiword" prop_idempotent_shellescape_multiword
]
main :: IO (Counts, Int)