mirror of
https://github.com/kazhala/dotbare
synced 2024-11-17 21:25:32 +00:00
fix(test): fix inconsistent test
This commit is contained in:
parent
c2026fbdbb
commit
1af316c608
@ -42,7 +42,7 @@ invalid_command() {
|
|||||||
[ "${lines[0]}" = "Usage: dotbare fadd [-h] [-f] [-d] ..." ]
|
[ "${lines[0]}" = "Usage: dotbare fadd [-h] [-f] [-d] ..." ]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "main routing" {
|
@test "main routing2" {
|
||||||
run routing2
|
run routing2
|
||||||
[ "${status}" -eq 0 ]
|
[ "${status}" -eq 0 ]
|
||||||
[ "${lines[0]}" = "Usage: dotbare flog [-h] [-r] [-R] [-e] [-c] ..." ]
|
[ "${lines[0]}" = "Usage: dotbare flog [-h] [-r] [-R] [-e] [-c] ..." ]
|
||||||
|
@ -36,19 +36,27 @@ select_files() {
|
|||||||
|
|
||||||
@test "freset select commit" {
|
@test "freset select commit" {
|
||||||
run select_commit
|
run select_commit
|
||||||
|
if ! "${BATS_TEST_DIRNAME}"/../dotbare log &>/dev/null; then
|
||||||
|
[ "${lines[0]}" = "fatal: your current branch 'master' does not have any commits yet" ]
|
||||||
|
else
|
||||||
result=$(echo "${lines[0]}" | tr '`' "'")
|
result=$(echo "${lines[0]}" | tr '`' "'")
|
||||||
[ "${status}" -eq 129 ]
|
|
||||||
[ "${result}" = "error: unknown option 'no-multi'" ]
|
[ "${result}" = "error: unknown option 'no-multi'" ]
|
||||||
|
fi
|
||||||
|
[ "${status}" -eq 129 ]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "freset no selection made" {
|
@test "freset no selection made" {
|
||||||
run no_selection_made
|
run no_selection_made
|
||||||
echo "${output}" >&3
|
|
||||||
[ "${status}" -eq 1 ]
|
[ "${status}" -eq 1 ]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "freset select files" {
|
@test "freset select files" {
|
||||||
run select_files
|
run select_files
|
||||||
echo "${output}" >&3
|
if ! "${BATS_TEST_DIRNAME}"/../dotbare log &>/dev/null; then
|
||||||
|
[ "${status}" -eq 128 ]
|
||||||
|
[ "${lines[0]}" = "fatal: ambiguous argument 'HEAD': unknown revision or path not in the working tree." ]
|
||||||
|
else
|
||||||
[ "${status}" -eq 0 ]
|
[ "${status}" -eq 0 ]
|
||||||
|
[ -z "${output}" ]
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user