Skip to content

Commit 4c926b3

Browse files
marcowsgitster
authored andcommitted
t7508: add test for "git status" refreshing the index
Signed-off-by: Markus Heidelberg <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 1f2362a commit 4c926b3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

t/t7508-status.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,16 @@ test_expect_success 'dry-run of partial commit excluding new file in index' '
496496
test_cmp expect output
497497
'
498498

499+
cat >expect <<EOF
500+
:100644 100644 e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 0000000000000000000000000000000000000000 M dir1/modified
501+
EOF
502+
test_expect_failure 'status refreshes the index' '
503+
touch dir2/added &&
504+
git status &&
505+
git diff-files >output &&
506+
test_cmp expect output
507+
'
508+
499509
test_expect_success 'setup status submodule summary' '
500510
test_create_repo sm && (
501511
cd sm &&

0 commit comments

Comments
 (0)