diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-01-15 07:58:46 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-01-15 07:58:46 +0100 |
commit | b32acd21d81ac792cf28d487b960a2f6bb0ef0e2 (patch) | |
tree | 0d12b7b48f2a42dda239f385c96f8fe880d2a065 /t | |
parent | Update 1.6.2 draft release notes (diff) | |
parent | Update draft release notes to 1.6.1.1 (diff) | |
download | git-b32acd21d81ac792cf28d487b960a2f6bb0ef0e2.tar.xz git-b32acd21d81ac792cf28d487b960a2f6bb0ef0e2.zip |
Merge branch 'maint'
* maint:
Update draft release notes to 1.6.1.1
Make t3411 executable
fix handling of multiple untracked files for git mv -k
add test cases for "git mv -k"
Diffstat (limited to 't')
-rwxr-xr-x[-rw-r--r--] | t/t3411-rebase-preserve-around-merges.sh | 0 | ||||
-rwxr-xr-x | t/t7001-mv.sh | 25 |
2 files changed, 25 insertions, 0 deletions
diff --git a/t/t3411-rebase-preserve-around-merges.sh b/t/t3411-rebase-preserve-around-merges.sh index aacfaae843..aacfaae843 100644..100755 --- a/t/t3411-rebase-preserve-around-merges.sh +++ b/t/t3411-rebase-preserve-around-merges.sh diff --git a/t/t7001-mv.sh b/t/t7001-mv.sh index 575ef5beb2..ef2e78f9df 100755 --- a/t/t7001-mv.sh +++ b/t/t7001-mv.sh @@ -39,6 +39,31 @@ test_expect_success \ grep "^R100..*path1/COPYING..*path0/COPYING"' test_expect_success \ + 'checking -k on non-existing file' \ + 'git mv -k idontexist path0' + +test_expect_success \ + 'checking -k on untracked file' \ + 'touch untracked1 && + git mv -k untracked1 path0 && + test -f untracked1 && + test ! -f path0/untracked1' + +test_expect_success \ + 'checking -k on multiple untracked files' \ + 'touch untracked2 && + git mv -k untracked1 untracked2 path0 && + test -f untracked1 && + test -f untracked2 && + test ! -f path0/untracked1 + test ! -f path0/untracked2' + +# clean up the mess in case bad things happen +rm -f idontexist untracked1 untracked2 \ + path0/idontexist path0/untracked1 path0/untracked2 \ + .git/index.lock + +test_expect_success \ 'adding another file' \ 'cp "$TEST_DIRECTORY"/../README path0/README && git add path0/README && |