summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-03-06 22:54:00 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-03-06 22:54:00 (GMT)
commita4ae2e5a1c45890f5eeccb2d1989a15c07f99e3d (patch)
treefc464f383288f3bfdc78d1bb74dd4221a0c37323 /t
parent05d290e1dbd2ed424cd3c872c5b20390100fa5f7 (diff)
parent4cbe92fd41567e48ca60f4c810479b63ba8421fd (diff)
downloadgit-a4ae2e5a1c45890f5eeccb2d1989a15c07f99e3d.zip
git-a4ae2e5a1c45890f5eeccb2d1989a15c07f99e3d.tar.gz
git-a4ae2e5a1c45890f5eeccb2d1989a15c07f99e3d.tar.bz2
Merge branch 'sm/mv-dry-run-update'
Code clean-up. * sm/mv-dry-run-update: mv: remove unneeded 'if (!show_only)' t7001: add test case for --dry-run
Diffstat (limited to 't')
-rwxr-xr-xt/t7001-mv.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/t/t7001-mv.sh b/t/t7001-mv.sh
index 6e5031f..d4e6485 100755
--- a/t/t7001-mv.sh
+++ b/t/t7001-mv.sh
@@ -39,6 +39,12 @@ test_expect_success \
grep "^R100..*path1/COPYING..*path0/COPYING"'
test_expect_success \
+ 'mv --dry-run does not move file' \
+ 'git mv -n path0/COPYING MOVED &&
+ test -f path0/COPYING &&
+ test ! -f MOVED'
+
+test_expect_success \
'checking -k on non-existing file' \
'git mv -k idontexist path0'