summaryrefslogtreecommitdiff
path: root/t/t3404-rebase-interactive.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-03-17 16:01:29 -0700
committerJunio C Hamano <gitster@pobox.com>2015-03-17 16:01:29 -0700
commitfbcbcee51c5f209922bb1d4409be2fe9a7c66231 (patch)
treea6fa6206de48f21d9e2e3930953e83a8265ad8e9 /t/t3404-rebase-interactive.sh
parent860b05b77b876b0e9bd2f32f1d3b518f64c7b87b (diff)
parent2185d3b7ad2ccdfe220d5c4139ff671a66fe7d80 (diff)
downloadgit-fbcbcee51c5f209922bb1d4409be2fe9a7c66231.tar.gz
Merge branch 'es/rebase-i-count-todo'
"git rebase -i" recently started to include the number of commits in the insn sheet to be processed, but on a platform that prepends leading whitespaces to "wc -l" output, the numbers are shown with extra whitespaces that aren't necessary. * es/rebase-i-count-todo: rebase-interactive: re-word "item count" comment rebase-interactive: suppress whitespace preceding item count
Diffstat (limited to 't/t3404-rebase-interactive.sh')
-rwxr-xr-xt/t3404-rebase-interactive.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh
index a31f7e0430..034eb35cdf 100755
--- a/t/t3404-rebase-interactive.sh
+++ b/t/t3404-rebase-interactive.sh
@@ -1046,4 +1046,13 @@ test_expect_success 'respect core.abbrev' '
test 4 = $(grep -c "pick [0-9a-f]\{12,\}" todo-list)
'
+test_expect_success 'todo count' '
+ write_script dump-raw.sh <<-\EOF &&
+ cat "$1"
+ EOF
+ test_set_editor "$(pwd)/dump-raw.sh" &&
+ git rebase -i HEAD~4 >actual &&
+ grep "^# Rebase ..* onto ..* ([0-9]" actual
+'
+
test_done