rename binaryExists to commandExists

This commit is contained in:
Nathaniel Landau
2021-10-22 16:08:42 -04:00
parent 49468383f2
commit 04dd6d76bb
3 changed files with 7 additions and 7 deletions

View File

@@ -86,13 +86,13 @@ teardown() {
assert_failure
}
@test "_binaryExists_: true" {
run _binaryExists_ "vi"
@test "_commandExists_: true" {
run _commandExists_ "vi"
assert_success
}
@test "_binaryExists_: false" {
run _binaryExists_ "someNonexistantBinary"
@test "_commandExists_: false" {
run _commandExists_ "someNonexistantBinary"
assert_failure
}