mirror of https://github.com/docker/docs.git
20 lines
518 B
Bash
20 lines
518 B
Bash
#!/usr/bin/env bats
|
|
|
|
load ${BASE_TEST_DIR}/helpers.bash
|
|
|
|
@test "$DRIVER: create with arbitrary engine envs" {
|
|
run machine create -d $DRIVER \
|
|
--engine-env=TEST=VALUE \
|
|
$NAME
|
|
echo ${output}
|
|
[ $status -eq 0 ]
|
|
}
|
|
|
|
@test "$DRIVER: test docker process envs" {
|
|
# get pid of docker process, check process envs for set Environment Variable from above test
|
|
run machine ssh $NAME 'sudo cat /proc/$(pgrep -f "docker [d]aemon")/environ'
|
|
echo ${output}
|
|
[ $status -eq 0 ]
|
|
[[ "${output}" =~ "TEST=VALUE" ]]
|
|
}
|