Jeff King | a5adace | 2015-09-16 13:12:52 -0400 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | test_description='test disabling of remote-helper paths in clone/fetch' |
Patrick Steinhardt | 6ce8ffe | 2024-08-08 07:22:04 +0200 | [diff] [blame] | 4 | |
Jeff King | a5adace | 2015-09-16 13:12:52 -0400 | [diff] [blame] | 5 | . ./test-lib.sh |
| 6 | . "$TEST_DIRECTORY/lib-proto-disable.sh" |
| 7 | |
| 8 | setup_ext_wrapper |
| 9 | |
| 10 | test_expect_success 'setup repository to clone' ' |
| 11 | test_commit one && |
| 12 | mkdir remote && |
| 13 | git init --bare remote/repo.git && |
| 14 | git push remote/repo.git HEAD |
| 15 | ' |
| 16 | |
| 17 | test_proto "remote-helper" ext "ext::fake-remote %S repo.git" |
| 18 | |
| 19 | test_done |