3 # Copyright (c) 2006 Carl D. Worth
6 test_description
='Test of the various options to git-rm.'
10 # Setup some files to be removed, some with funny characters
11 touch -- foo bar baz
'space embedded' -q
12 git-add
-- foo bar baz
'space embedded' -q
13 git-commit
-m "add normal files"
15 if touch -- 'tab embedded' 'newline
18 git-add
-- 'tab embedded' 'newline
20 git-commit
-m "add files with tabs and newlines"
22 say
'Your filesystem does not allow tabs in filenames.'
27 'Pre-check that foo exists and is in index before git-rm foo' \
28 '[ -f foo ] && git-ls-files --error-unmatch foo'
31 'Test that git-rm foo succeeds' \
35 'Post-check that foo exists but is not in index after git-rm foo' \
36 '[ -f foo ] && ! git-ls-files --error-unmatch foo'
39 'Pre-check that bar exists and is in index before "git-rm -f bar"' \
40 '[ -f bar ] && git-ls-files --error-unmatch bar'
43 'Test that "git-rm -f bar" succeeds' \
47 'Post-check that bar does not exist and is not in index after "git-rm -f bar"' \
48 '! [ -f bar ] && ! git-ls-files --error-unmatch bar'
51 'Test that "git-rm -- -q" succeeds (remove a file that looks like an option)' \
54 test "$test_tabs" = y
&& test_expect_success \
55 "Test that \"git-rm -f\" succeeds with embedded space, tab, or newline characters." \
56 "git-rm -f 'space embedded' 'tab embedded' 'newline
59 if test "$test_tabs" = y
; then
62 'Test that "git-rm -f" fails if its rm fails' \
68 'When the rm in "git-rm -f" fails, it should not remove the file from the index' \
69 'git-ls-files --error-unmatch baz'