Files
docker-docs/test/integration/api/info.bats
Andrea Luzzardi cfbb555bba integration: cleanup debug echo and test names
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
2015-05-06 15:47:28 -07:00

18 lines
295 B
Bash

#!/usr/bin/env bats
load ../helpers
function teardown() {
swarm_manage_cleanup
stop_docker
}
@test "docker info" {
start_docker 1 --label foo=bar
swarm_manage
run docker_swarm info
[ "$status" -eq 0 ]
[[ "${output}" == *"Nodes: 1"* ]]
[[ "${output}" == *"└ Labels:"*"foo=bar"* ]]
}