Fix tests that set local.hostname (#59)
This commit is contained in:
parent
c053481c21
commit
fda2da6a5b
3 changed files with 6 additions and 6 deletions
|
@ -143,12 +143,12 @@ setup() {
|
|||
|
||||
#; write local attributes
|
||||
build_repo
|
||||
for loption in class os host user; do
|
||||
for loption in class os hostname user; do
|
||||
GIT_DIR="$T_DIR_REPO" git config "local.$loption" "custom_$loption"
|
||||
done
|
||||
|
||||
#; run config
|
||||
for loption in class os host user; do
|
||||
for loption in class os hostname user; do
|
||||
run "${T_YADM_Y[@]}" config "local.$loption"
|
||||
#; validate status and output
|
||||
[ $status -eq 0 ]
|
||||
|
@ -176,7 +176,7 @@ setup() {
|
|||
local linecount
|
||||
expected="[local]\n"
|
||||
linecount=1
|
||||
for loption in class os host user; do
|
||||
for loption in class os hostname user; do
|
||||
#; update expected
|
||||
expected="$expected\t$loption = custom_$loption\n"
|
||||
((linecount+=1))
|
||||
|
|
|
@ -379,13 +379,13 @@ function test_alt() {
|
|||
echo "
|
||||
When the command 'alt' is provided
|
||||
and file matches only ##SYSTEM.HOST
|
||||
after setting local.host
|
||||
after setting local.hostname
|
||||
Report the linking
|
||||
Verify correct file is linked
|
||||
Exit with 0
|
||||
"
|
||||
|
||||
GIT_DIR="$T_DIR_REPO" git config local.host custom_host
|
||||
GIT_DIR="$T_DIR_REPO" git config local.hostname custom_host
|
||||
test_alt 'override_host' 'false' ''
|
||||
}
|
||||
|
||||
|
|
|
@ -169,7 +169,7 @@ function test_alt() {
|
|||
|
||||
GIT_DIR="$T_DIR_REPO" git config local.os custom_system
|
||||
GIT_DIR="$T_DIR_REPO" git config local.user custom_user
|
||||
GIT_DIR="$T_DIR_REPO" git config local.host custom_host
|
||||
GIT_DIR="$T_DIR_REPO" git config local.hostname custom_host
|
||||
GIT_DIR="$T_DIR_REPO" git config local.class custom_class
|
||||
test_alt 'override_all' 'false' ''
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue