summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2008-11-27 19:24:00 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2008-11-27 19:24:00 -0800
commit496db64202b11e66a080873ca9e32f1354dcfd3e (patch)
treed15f31e62f019aee02af3a99a7e4c453ee31857a /t
parentMerge branch 'maint' (diff)
parentgit send-email: ask less questions when --compose is used. (diff)
downloadtgif-496db64202b11e66a080873ca9e32f1354dcfd3e.tar.xz
Merge branch 'ph/send-email'
* ph/send-email: git send-email: ask less questions when --compose is used. git send-email: add --annotate option git send-email: interpret unknown files as revision lists git send-email: make the message file name more specific.
Diffstat (limited to 't')
-rwxr-xr-xt/t9001-send-email.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh
index 561ae7d0a6..617e97d963 100755
--- a/t/t9001-send-email.sh
+++ b/t/t9001-send-email.sh
@@ -292,4 +292,12 @@ test_expect_success '--compose adds MIME for utf8 subject' '
grep "^Subject: =?utf-8?q?utf8-s=C3=BCbj=C3=ABct?=" msgtxt1
'
+test_expect_success 'detects ambiguous reference/file conflict' '
+ echo master > master &&
+ git add master &&
+ git commit -m"add master" &&
+ test_must_fail git send-email --dry-run master 2>errors &&
+ grep disambiguate errors
+'
+
test_done