2
1
mirror of https://github.com/kdabir/has.git synced 2024-09-18 17:01:29 +02:00
has/.hastest.bats
2017-08-29 09:23:21 +05:30

31 lines
639 B
Bash

#!/usr/bin/env bats
@test "works with single command check" {
run bash has git
[ "$status" -eq 0 ]
[[ $output == *"✔ git"* ]]
}
@test "safely tells about tools not configured" {
run bash has foobar
[ "$status" -eq 1 ]
[[ $output == *"✘ foobar not understood"* ]]
}
@test "env var lets override safety check" {
HAS_ALLOW_UNSAFE=y run bash has foobar
[ "$status" -eq 1 ]
[[ $output == *"✘ foobar"* ]]
}
@test "status code reflects number of failed commands" {
HAS_ALLOW_UNSAFE=y run bash has foobar make git barbaz
[ "$status" -eq 2 ]
[[ $output == *"✘ foobar"* ]]
[[ $output == *"✘ barbaz"* ]]
}