diff options
author | Joey Hess <joey@kitenet.net> | 2013-05-01 02:23:52 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-05-01 02:23:52 -0400 |
commit | b7c54811b6573779ddaa888d6d5efb315ee719ee (patch) | |
tree | 99658eb3ed110ffde0148ce0f3fc8f49efd509f6 /Test.hs | |
parent | cd05053fbcc5cbe70c517828b9a56b5dbeb18447 (diff) |
update for initremote changes
Diffstat (limited to 'Test.hs')
-rw-r--r-- | Test.hs | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -730,15 +730,17 @@ test_crypto = "git-annex crypto" ~: intmpclonerepo $ when Build.SysConfig.gpg $ Utility.Gpg.testTestHarness @? "test harness self-test failed" Utility.Gpg.testHarness $ do createDirectory "dir" - let initremote = git_annex "initremote" + let a cmd = git_annex cmd [ "foo" , "type=directory" , "encryption=" ++ Utility.Gpg.testKeyId , "directory=dir" , "highRandomQuality=false" ] - initremote @? "initremote failed" - initremote @? "initremote failed when run twice in a row" + a "initremote" @? "initremote failed" + not <$> a "initremote" @? "initremote failed to fail when run twice in a row" + a "enableremote" @? "enableremote failed" + a "enableremote" @? "enableremote failed when run twice in a row" git_annex "get" [annexedfile] @? "get of file failed" annexed_present annexedfile git_annex "copy" [annexedfile, "--to", "foo"] @? "copy --to encrypted remote failed" |