Archived
1
0

feat(brew-bump): add check for cleanup step

This commit is contained in:
Joe Previte
2021-09-24 15:26:20 -07:00
parent e5f03e0b06
commit 8ef950af4c
3 changed files with 36 additions and 29 deletions

View File

@ -7,40 +7,40 @@ source "$SCRIPT"
@test "is_env_var_set should return 1 if env var is not set" {
run is_env_var_set "ASDF_TEST_SET"
[ "$output" = 1 ]
[ "$status" = 1 ]
}
@test "is_env_var_set should return 0 if env var is set" {
ASDF_TEST_SET="test" run is_env_var_set "ASDF_TEST_SET"
[ "$output" = 0 ]
[ "$status" = 0 ]
}
@test "directory_exists should 1 if directory doesn't exist" {
run directory_exists "/tmp/asdfasdfasdf"
[ "$output" = 1 ]
[ "$status" = 1 ]
}
@test "directory_exists should 0 if directory exists" {
run directory_exists "$(pwd)"
[ "$output" = 0 ]
[ "$status" = 0 ]
}
@test "file_exists should 1 if file doesn't exist" {
run file_exists "hello-asfd.sh"
[ "$output" = 1 ]
[ "$status" = 1 ]
}
@test "file_exists should 0 if file exists" {
run file_exists "$SCRIPT"
[ "$output" = 0 ]
[ "$status" = 0 ]
}
@test "is_executable should 1 if file isn't executable" {
run is_executable "hello-asfd.sh"
[ "$output" = 1 ]
[ "$status" = 1 ]
}
@test "is_executable should 0 if file is executable" {
run is_executable "$SCRIPT"
[ "$output" = 0 ]
[ "$status" = 0 ]
}