2
0
mirror of https://github.com/kazhala/dotbare synced 2024-11-02 09:40:27 +00:00
dotbare/tests/fupgrade.bats

40 lines
725 B
Plaintext
Raw Normal View History

2020-05-19 10:50:34 +00:00
#!/usr/bin/env bats
2020-05-20 04:38:23 +00:00
setup() {
export DOTBARE_CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
}
teardown() {
git checkout "$DOTBARE_CURRENT_BRANCH"
}
2020-05-19 10:50:34 +00:00
help() {
bash "${BATS_TEST_DIRNAME}"/../dotbare fupgrade -h
}
invalid_option() {
bash "${BATS_TEST_DIRNAME}"/../dotbare fupgrade -p
}
upgrade() {
bash "${BATS_TEST_DIRNAME}"/../dotbare fupgrade
}
@test "fupgrade help" {
run help
[ "${status}" -eq 0 ]
[ "${lines[0]}" = "Usage: dotbare fupgrade [-h] ..." ]
}
@test "fupgrade invliad option" {
run invalid_option
[ "${status}" -eq 1 ]
[ "${lines[0]}" = "Invalid option: p" ]
}
@test "fupgrade upgrade" {
run upgrade
[ "${status}" -eq 0 ]
[ "${lines[0]}" = "Fetching latest changes ..." ]
}