Files
docker-docs/test/integration/cli.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

16 lines
258 B
Bash

#!/usr/bin/env bats
load helpers
@test "swarm create doesn't accept any arguments" {
run swarm create derpderpderp
[ "$status" -ne 0 ]
}
@test "swarm version" {
run swarm -v
[ "$status" -eq 0 ]
[[ ${lines[0]} =~ version\ [0-9]+\.[0-9]+\.[0-9]+ ]]
}