diff options
Diffstat (limited to 't/t1307-config-blob.sh')
-rwxr-xr-x | t/t1307-config-blob.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/t/t1307-config-blob.sh b/t/t1307-config-blob.sh index 3c6791e6be..37dc689d8c 100755 --- a/t/t1307-config-blob.sh +++ b/t/t1307-config-blob.sh @@ -61,10 +61,7 @@ test_expect_success 'parse errors in blobs are properly attributed' ' git commit -m broken && test_must_fail git config --blob=HEAD:config some.value 2>err && - - # just grep for our token as the exact error message is likely to - # change or be internationalized - grep "HEAD:config" err + test_i18ngrep "HEAD:config" err ' test_expect_success 'can parse blob ending with CR' ' @@ -76,4 +73,8 @@ test_expect_success 'can parse blob ending with CR' ' test_cmp expect actual ' +test_expect_success 'config --blob outside of a repository is an error' ' + test_must_fail nongit git config --blob=foo --list +' + test_done |