]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5814-proto-disable-ext.sh
path.c: don't call the match function without value in trie_find()
[thirdparty/git.git] / t / t5814-proto-disable-ext.sh
CommitLineData
a5adaced
JK
1#!/bin/sh
2
3test_description='test disabling of remote-helper paths in clone/fetch'
4. ./test-lib.sh
5. "$TEST_DIRECTORY/lib-proto-disable.sh"
6
7setup_ext_wrapper
8
9test_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
16test_proto "remote-helper" ext "ext::fake-remote %S repo.git"
17
18test_done