summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-05-01 22:24:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-05-01 22:24:01 (GMT)
commitc259a1a927016fa5b80e3a7055031430cbdfddb8 (patch)
tree841a389391b80df690c30fb64792a068c49940fc /t
parentb9347eb224d7b38f29893e75b6ca16a61647a4f2 (diff)
parentb17dd3f9d6b1657b3fbfb40a863fc2dce5f54798 (diff)
downloadgit-c259a1a927016fa5b80e3a7055031430cbdfddb8.zip
git-c259a1a927016fa5b80e3a7055031430cbdfddb8.tar.gz
git-c259a1a927016fa5b80e3a7055031430cbdfddb8.tar.bz2
Merge branch 'tr/remote-tighten-commandline-parsing'
* tr/remote-tighten-commandline-parsing: remote: 'show' and 'prune' can take more than one remote remote: check for superfluous arguments in 'git remote add' remote: add a test for extra arguments, according to docs
Diffstat (limited to 't')
-rwxr-xr-xt/t5505-remote.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/t/t5505-remote.sh b/t/t5505-remote.sh
index 6579a86..dd10ff0 100755
--- a/t/t5505-remote.sh
+++ b/t/t5505-remote.sh
@@ -1003,4 +1003,26 @@ test_expect_success 'remote set-url --delete baz' '
cmp expect actual
'
+test_expect_success 'extra args: setup' '
+ # add a dummy origin so that this does not trigger failure
+ git remote add origin .
+'
+
+test_extra_arg () {
+ test_expect_success "extra args: $*" "
+ test_must_fail git remote $* bogus_extra_arg 2>actual &&
+ grep '^usage:' actual
+ "
+}
+
+test_extra_arg add nick url
+test_extra_arg rename origin newname
+test_extra_arg remove origin
+test_extra_arg set-head origin master
+# set-branches takes any number of args
+test_extra_arg set-url origin newurl oldurl
+# show takes any number of args
+# prune takes any number of args
+# update takes any number of args
+
test_done