summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3d1d81e)
raw | patch | inline | side by side (parent: 3d1d81e)
author | Michael J Gruber <git@drmicha.warpmail.net> | |
Wed, 14 Jan 2009 17:03:21 +0000 (18:03 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 14 Jan 2009 17:29:24 +0000 (09:29 -0800) |
Add test cases for ignoring nonexisting and untracked files using the -k
option to "git mv". There is one known breakage related to multiple
untracked files specfied as consecutive arguments.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
option to "git mv". There is one known breakage related to multiple
untracked files specfied as consecutive arguments.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7001-mv.sh | patch | blob | history |
diff --git a/t/t7001-mv.sh b/t/t7001-mv.sh
index 66bb1264ff7f8528168ca82ba908cff29658fa9d..fddcdde6ebc47615e8541c2ae9dad30adb708c78 100755 (executable)
--- a/t/t7001-mv.sh
+++ b/t/t7001-mv.sh
'git diff-tree -r -M --name-status HEAD^ HEAD | \
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_failure \
+ '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 ../../README path0/README &&