Skip to content

Commit

Permalink
t2200: test more cases of "add -u"
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Nov 12, 2007
1 parent fb63d7f commit 25487bd
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions t/t2200-add-update.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

test_description='git add -u with path limiting
test_description='git add -u
This test creates a working tree state with three files:
Expand All @@ -9,7 +9,10 @@ This test creates a working tree state with three files:
dir/other (untracked)
and issues a git add -u with path limiting on "dir" to add
only the updates to dir/sub.'
only the updates to dir/sub.
Also tested are "git add -u" without limiting, and "git add -u"
without contents changes.'

. ./test-lib.sh

Expand Down Expand Up @@ -85,4 +88,27 @@ test_expect_success 'replace a file with a symlink' '
'

test_expect_success 'add everything changed' '
git add -u &&
test -z "$(git diff-files)"
'

test_expect_success 'touch and then add -u' '
touch check &&
git add -u &&
test -z "$(git diff-files)"
'

test_expect_success 'touch and then add explicitly' '
touch check &&
git add check &&
test -z "$(git diff-files)"
'

test_done

0 comments on commit 25487bd

Please sign in to comment.