mirror of
https://github.com/docker/docs.git
synced 2026-04-12 06:19:22 +07:00
10 lines
153 B
Bash
10 lines
153 B
Bash
#!/usr/bin/env bats
|
|
|
|
load helpers
|
|
|
|
@test "test that create doesn't accept any arugments" {
|
|
run swarm create derpderpderp
|
|
[ "$status" -ne 0 ]
|
|
}
|
|
|