blob: 9587a842bc2408e7f3417cbc0b782b0b996502a8 [file] [log] [blame]
Jeff Kinga5adace2015-09-16 13:12:52 -04001#!/bin/sh
2
3test_description='test disabling of remote-helper paths in clone/fetch'
Patrick Steinhardt6ce8ffe2024-08-08 07:22:04 +02004
Jeff Kinga5adace2015-09-16 13:12:52 -04005. ./test-lib.sh
6. "$TEST_DIRECTORY/lib-proto-disable.sh"
7
8setup_ext_wrapper
9
10test_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
17test_proto "remote-helper" ext "ext::fake-remote %S repo.git"
18
19test_done