abra/tests/01_environment.bats
2021-01-29 14:02:26 +02:00

19 lines
253 B
Bash

#!/usr/bin/env bats
@test "docker is available" {
nonexistent
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
}