rebase -i: Add tests for "--edit-todo"
authorAndrew Wong <andrew.kw.w@gmail.com>
Tue, 18 Sep 2012 01:28:10 +0000 (21:28 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 18 Sep 2012 03:59:18 +0000 (20:59 -0700)
Signed-off-by: Andrew Wong <andrew.kw.w@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t3404-rebase-interactive.sh
index 7304b663c31992de232736a3d9201bb878d2c6f4..6eafb634656ee67bbc3fc8869a5a4ee6d647112b 100755 (executable)
@@ -911,4 +911,22 @@ test_expect_success 'rebase -i --root fixup root commit' '
        test 0 = $(git cat-file commit HEAD | grep -c ^parent\ )
 '
 
+test_expect_success 'rebase --edit-todo does not works on non-interactive rebase' '
+       git reset --hard &&
+       git checkout conflict-branch &&
+       test_must_fail git rebase --onto HEAD~2 HEAD~ &&
+       test_must_fail git rebase --edit-todo &&
+       git rebase --abort
+'
+
+test_expect_success 'rebase --edit-todo can be used to modify todo' '
+       git reset --hard &&
+       git checkout no-conflict-branch^0 &&
+       FAKE_LINES="edit 1 2 3" git rebase -i HEAD~3 &&
+       FAKE_LINES="2 1" git rebase --edit-todo &&
+       git rebase --continue
+       test M = $(git cat-file commit HEAD^ | sed -ne \$p) &&
+       test L = $(git cat-file commit HEAD | sed -ne \$p)
+'
+
 test_done