18 lines
237 B
Plaintext
18 lines
237 B
Plaintext
|
#!/usr/bin/env bats
|
||
|
|
||
|
@test "docker is available" {
|
||
|
command -v docker
|
||
|
}
|
||
|
|
||
|
@test "abra is executable" {
|
||
|
./abra --help
|
||
|
}
|
||
|
|
||
|
@test "git is available" {
|
||
|
command -v git
|
||
|
}
|
||
|
|
||
|
@test "running in a container" {
|
||
|
ls /etc/alpine-release
|
||
|
}
|