diff options
author | Taylor Blau <me@ttaylorr.com> | 2022-07-29 21:21:40 +0200 |
---|---|---|
committer | Taylor Blau <me@ttaylorr.com> | 2022-10-01 06:23:38 +0200 |
commit | 0d3beb71dad7906f576b0de9cea32164549163fe (patch) | |
tree | b2b860831815d581f8afba1c308a9b56f5c914c2 /t/t7408-submodule-reference.sh | |
parent | t/t6NNN: allow local submodules (diff) | |
download | git-0d3beb71dad7906f576b0de9cea32164549163fe.tar.xz git-0d3beb71dad7906f576b0de9cea32164549163fe.zip |
t/t7NNN: allow local submodules
To prepare for the default value of `protocol.file.allow` to change to
"user", ensure tests that rely on local submodules can initialize them
over the file protocol.
Tests that only need to interact with submodules in a limited capacity
have individual Git commands annotated with the appropriate
configuration via `-c`. Tests that interact with submodules a handful of
times use `test_config_global` instead. Test scripts that rely on
submodules throughout use a `git config --global` during a setup test
towards the beginning of the script.
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Diffstat (limited to 't/t7408-submodule-reference.sh')
-rwxr-xr-x | t/t7408-submodule-reference.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t7408-submodule-reference.sh b/t/t7408-submodule-reference.sh index a3892f494b..02feb85779 100755 --- a/t/t7408-submodule-reference.sh +++ b/t/t7408-submodule-reference.sh @@ -17,6 +17,10 @@ test_alternate_is_used () { test_cmp expect actual } +test_expect_success 'setup' ' + git config --global protocol.file.allow always +' + test_expect_success 'preparing first repository' ' test_create_repo A && ( |