You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotbare/tests/set_variable.bats

18 lines
370 B
Bash

#!/usr/bin/env bats
setup() {
source "${BATS_TEST_DIRNAME}"/../helper/set_variable.sh
}
@test "env check env var" {
[ "${DOTBARE_DIR}" = "$HOME/.cfg/" ]
[ "${DOTBARE_TREE}" = "$HOME" ]
[ "${DOTBARE_BACKUP}" = "$HOME/.local/share/dotbare" ]
}
@test "env check fzf var" {
[ -n "${DOTBARE_KEY}" ]
[ -n "${FZF_DEFAULT_OPTS}" ]
[ -n "${DOTBARE_VERSION}" ]
}