mirror of https://github.com/docker/docs.git
13 lines
304 B
Bash
13 lines
304 B
Bash
#!/usr/bin/env bats
|
|
|
|
load ${BASE_TEST_DIR}/helpers.bash
|
|
|
|
force_env DRIVER virtualbox
|
|
|
|
export BAD_URL="http://dev.null:9111/bad.iso"
|
|
|
|
@test "$DRIVER: Should not allow machine creation with bad ISO" {
|
|
run machine create -d virtualbox --virtualbox-boot2docker-url $BAD_URL $NAME
|
|
[[ ${status} -eq 1 ]]
|
|
}
|