]> granicus.if.org Git - git/commitdiff
t/t7507: improve test coverage
authorPranit Bauva <pranit.bauva@gmail.com>
Thu, 5 May 2016 09:49:59 +0000 (15:19 +0530)
committerJunio C Hamano <gitster@pobox.com>
Thu, 5 May 2016 18:52:45 +0000 (11:52 -0700)
git-commit and git-status share the same implementation thus it is
necessary to ensure that changes specific to git-commit don't
accidentally impact git-status.

This test verifies that changes made to verbose in git-commit does not
impact git-status.

Signed-off-by: Pranit Bauva <pranit.bauva@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7507-commit-verbose.sh

index 2ddf28c984de99cb17884f76d68a708076f57e12..a3c858257719787925ff3fc7257a92e4a27472f0 100755 (executable)
@@ -96,4 +96,9 @@ test_expect_success 'verbose diff is stripped out with set core.commentChar' '
        test_i18ngrep "Aborting commit due to empty commit message." err
 '
 
+test_expect_success 'status does not verbose without --verbose' '
+       git status >actual &&
+       ! grep "^diff --git" actual
+'
+
 test_done