add docker run not enough resources test

Signed-off-by: Victor Vieux <victorvieux@gmail.com>
This commit is contained in:
Victor Vieux 2015-06-01 16:46:01 -07:00
parent 0e32d052cf
commit d6bd288fb0
1 changed files with 11 additions and 0 deletions

View File

@ -21,3 +21,14 @@ function teardown() {
# verify, container is running
[ -n $(docker_swarm ps -q --filter=name=test_container --filter=status=running) ]
}
@test "docker run not enough resources" {
start_docker_with_busybox 1
swarm_manage
run docker_swarm run -d --name test_container -m 1000g busybox ls
[ "$status" -ne 0 ]
run docker_swarm run -d --name test_container -c 1000 busybox ls
[ "$status" -ne 0 ]
}