This repository has been archived on 2024-10-23. You can view files and clone it, but cannot push or open issues or pull requests.
abra-bash/tests/01_environment.bats
Luke Murphy c082645da0
All checks were successful
continuous-integration/drone/push Build is passing
Remove test commit
2021-02-09 08:35:52 +01:00

18 lines
237 B
Bash

#!/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
}