diff options
author | Taylor Blau <me@ttaylorr.com> | 2022-07-29 21:20:03 +0200 |
---|---|---|
committer | Taylor Blau <me@ttaylorr.com> | 2022-10-01 06:23:38 +0200 |
commit | 99f4abb8dae4c9c604e5d5cf255958bbe537b928 (patch) | |
tree | cce5238a44b33aa408605d1d19e0cf32a59d3f11 /t/t2403-worktree-move.sh | |
parent | t/t1NNN: allow local submodules (diff) | |
download | git-99f4abb8dae4c9c604e5d5cf255958bbe537b928.tar.xz git-99f4abb8dae4c9c604e5d5cf255958bbe537b928.zip |
t/2NNNN: 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/t2403-worktree-move.sh')
-rwxr-xr-x | t/t2403-worktree-move.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/t/t2403-worktree-move.sh b/t/t2403-worktree-move.sh index a4e1a178e0..e8246eed9c 100755 --- a/t/t2403-worktree-move.sh +++ b/t/t2403-worktree-move.sh @@ -138,7 +138,8 @@ test_expect_success 'move a repo with uninitialized submodule' ' ( cd withsub && test_commit initial && - git submodule add "$PWD"/.git sub && + git -c protocol.file.allow=always \ + submodule add "$PWD"/.git sub && git commit -m withsub && git worktree add second HEAD && git worktree move second third @@ -148,7 +149,7 @@ test_expect_success 'move a repo with uninitialized submodule' ' test_expect_success 'not move a repo with initialized submodule' ' ( cd withsub && - git -C third submodule update && + git -c protocol.file.allow=always -C third submodule update && test_must_fail git worktree move third forth ) ' @@ -227,6 +228,7 @@ test_expect_success 'remove cleans up .git/worktrees when empty' ' ' test_expect_success 'remove a repo with uninitialized submodule' ' + test_config_global protocol.file.allow always && ( cd withsub && git worktree add to-remove HEAD && @@ -235,6 +237,7 @@ test_expect_success 'remove a repo with uninitialized submodule' ' ' test_expect_success 'not remove a repo with initialized submodule' ' + test_config_global protocol.file.allow always && ( cd withsub && git worktree add to-remove HEAD && |