mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
15 lines
279 B
Bash
15 lines
279 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
test_description='test disabling of local paths in clone/fetch'
|
||
|
. ./test-lib.sh
|
||
|
. "$TEST_DIRECTORY/lib-proto-disable.sh"
|
||
|
|
||
|
test_expect_success 'setup repository to clone' '
|
||
|
test_commit one
|
||
|
'
|
||
|
|
||
|
test_proto "file://" file "file://$PWD"
|
||
|
test_proto "path" file .
|
||
|
|
||
|
test_done
|