]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4049-diff-stat-count.sh
Use correct grammar in diffstat summary line
[thirdparty/git.git] / t / t4049-diff-stat-count.sh
CommitLineData
e5f85df8
JH
1#!/bin/sh
2# Copyright (c) 2011, Google Inc.
3
4test_description='diff --stat-count'
5. ./test-lib.sh
6
7test_expect_success setup '
8 >a &&
9 >b &&
10 >c &&
11 >d &&
12 git add a b c d &&
13 chmod +x c d &&
14 echo a >a &&
15 echo b >b &&
16 cat >expect <<-\EOF
17 a | 1 +
18 b | 1 +
7f814632 19 2 files changed, 2 insertions(+)
e5f85df8
JH
20 EOF
21 git diff --stat --stat-count=2 >actual &&
22 test_cmp expect actual
23'
24
25test_done