diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-12-05 14:11:11 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-12-05 14:11:20 -0800 |
commit | 15a42a10ec71eb18983750562a2a8a43b224fef0 (patch) | |
tree | 2c208dd06917ffc4361cee469bfd3d9b7e5405cb /t/t6130-pathspec-noglob.sh | |
parent | stop installing git-tar-tree link (diff) | |
parent | Git 1.8.5 (diff) | |
download | tgif-15a42a10ec71eb18983750562a2a8a43b224fef0.tar.xz |
Sync with 1.8.5
Diffstat (limited to 't/t6130-pathspec-noglob.sh')
-rwxr-xr-x | t/t6130-pathspec-noglob.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t6130-pathspec-noglob.sh b/t/t6130-pathspec-noglob.sh index ea00d71e77..658353277e 100755 --- a/t/t6130-pathspec-noglob.sh +++ b/t/t6130-pathspec-noglob.sh @@ -108,6 +108,13 @@ test_expect_success 'no-glob environment variable works' ' test_cmp expect actual ' +test_expect_success 'blame takes global pathspec flags' ' + git --literal-pathspecs blame -- foo && + git --icase-pathspecs blame -- foo && + git --glob-pathspecs blame -- foo && + git --noglob-pathspecs blame -- foo +' + test_expect_success 'setup xxx/bar' ' mkdir xxx && test_commit xxx xxx/bar |