abra/test.bats

16 lines
292 B
Plaintext
Raw Normal View History

2020-10-23 03:03:01 +00:00
#!/usr/bin/env bats
@test "docker is available" {
command -v docker
}
@test "abra is executable" {
abra --help
}
@test "abra server add/rm works" {
abra server add swarm.example.com user 222
docker context ls | grep swarm.example.com
abra server rm swarm.example.com
}