mirror of
https://github.com/kazhala/dotbare
synced 2024-11-17 21:25:32 +00:00
fedit test
This commit is contained in:
parent
36286b76d1
commit
bdd77bcd17
31
tests/fedit.bats
Executable file
31
tests/fedit.bats
Executable file
@ -0,0 +1,31 @@
|
|||||||
|
#!/usr/bin/env bats
|
||||||
|
|
||||||
|
help() {
|
||||||
|
bash "${BATS_TEST_DIRNAME}"/../dotbare fedit -h
|
||||||
|
}
|
||||||
|
|
||||||
|
invalid_option() {
|
||||||
|
bash "${BATS_TEST_DIRNAME}"/../dotbare fedit -p
|
||||||
|
}
|
||||||
|
|
||||||
|
no_file_selected() {
|
||||||
|
cd "${BATS_TEST_DIRNAME}"
|
||||||
|
bash "${BATS_TEST_DIRNAME}"/../dotbare fedit -m
|
||||||
|
}
|
||||||
|
|
||||||
|
@test "fedit help" {
|
||||||
|
run help
|
||||||
|
[ "${status}" -eq 0 ]
|
||||||
|
[ "${lines[0]}" = "Usage: dotbare fedit [-h] ..." ]
|
||||||
|
}
|
||||||
|
|
||||||
|
@test "fedit invalid option" {
|
||||||
|
run invalid_option
|
||||||
|
[ "${status}" -eq 1 ]
|
||||||
|
[ "${lines[0]}" = "Invalid option: p" ]
|
||||||
|
}
|
||||||
|
|
||||||
|
@test "fadd no file selected" {
|
||||||
|
run no_file_selected
|
||||||
|
[ "${status}" -eq 1 ]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user