summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-03-06 13:21:46 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-03-06 13:21:46 -0400
commitb927dfd970d53418feeddf6c423ca43a81900155 (patch)
treeea125ebd4be39be5a2338d0669184b34c8fb3aaa
parentee806c1175b6dcb59fb22aaa9b23480955e7630e (diff)
remove addurl test
addurl --fast used to avoid network, but it always uses it now, getting at least size. Thus not appropriate for test suite without a lot of work.
-rw-r--r--test.hs8
1 files changed, 0 insertions, 8 deletions
diff --git a/test.hs b/test.hs
index 431517114..5f4b0ad40 100644
--- a/test.hs
+++ b/test.hs
@@ -107,7 +107,6 @@ blackbox = TestLabel "blackbox" $ TestList
, test_fsck
, test_migrate
, test_unused
- , test_addurl
, test_describe
, test_find
, test_merge
@@ -503,13 +502,6 @@ test_unused = "git-annex unused/dropunused" ~: intmpclonerepo $ do
r <- Backend.lookupFile f
return $ fst $ fromJust r
-test_addurl :: Test
-test_addurl = "git-annex addurl" ~: intmpclonerepo $ do
- annexed_notpresent annexedfile
- -- can't check download; test suite should not access network,
- -- and starting up a web server seems excessive
- git_annex "addurl" ["--fast", "http://example.com/nosuchfile"] @? "addurl failed"
-
test_describe :: Test
test_describe = "git-annex describe" ~: intmpclonerepo $ do
git_annex "describe" [".", "this repo"] @? "describe 1 failed"