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
3wc 5f7df4694f
Some checks failed
continuous-integration/drone/push Build is failing
Test failed drone build
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
}