mirror of
https://github.com/git/git.git
synced 2024-11-05 08:47:56 +01:00
27 lines
629 B
Bash
27 lines
629 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (c) 2016 Jacob Keller
|
||
|
#
|
||
|
|
||
|
test_description='Basic plumbing support of submodule--helper
|
||
|
|
||
|
This test verifies the submodule--helper plumbing command used to implement
|
||
|
git-submodule.
|
||
|
'
|
||
|
|
||
|
. ./test-lib.sh
|
||
|
|
||
|
test_expect_success 'sanitize-config clears configuration' '
|
||
|
git -c user.name="Some User" submodule--helper sanitize-config >actual &&
|
||
|
test_must_be_empty actual
|
||
|
'
|
||
|
|
||
|
sq="'"
|
||
|
test_expect_success 'sanitize-config keeps credential.helper' '
|
||
|
git -c credential.helper=helper submodule--helper sanitize-config >actual &&
|
||
|
echo "${sq}credential.helper=helper${sq}" >expect &&
|
||
|
test_cmp expect actual
|
||
|
'
|
||
|
|
||
|
test_done
|