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' | ||||
4 | . ./test-lib.sh | ||||
5 | . "$TEST_DIRECTORY/lib-proto-disable.sh" | ||||
6 | |||||
7 | setup_ext_wrapper | ||||
8 | |||||
9 | test_expect_success 'setup repository to clone' ' | ||||
10 | test_commit one && | ||||
11 | mkdir remote && | ||||
12 | git init --bare remote/repo.git && | ||||
13 | git push remote/repo.git HEAD | ||||
14 | ' | ||||
15 | |||||
16 | test_proto "remote-helper" ext "ext::fake-remote %S repo.git" | ||||
17 | |||||
18 | test_done |