Add bats unit testing to repository
Will recursively look for `*.bats` files and run them with bats-core test suite. Simple sample unit tests for existing scripts are included in `.config/shell/rc.d/test`.
This commit is contained in:
parent
beb5f1c323
commit
b11343b73a
5 changed files with 50 additions and 1 deletions
23
.config/shell/rc.d/test/env-wiki-root.bats
Normal file
23
.config/shell/rc.d/test/env-wiki-root.bats
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
setup() {
|
||||
testfile="$BATS_TEST_DIRNAME/../env-wiki-root.sh"
|
||||
}
|
||||
|
||||
teardown() {
|
||||
export WIKIROOT=""
|
||||
}
|
||||
|
||||
@test "Populates WIKIROOT environment variable" {
|
||||
source $testfile
|
||||
[ -n "$WIKIROOT" ]
|
||||
}
|
||||
|
||||
@test "Sets WIKIROOT to correct default path" {
|
||||
source $testfile
|
||||
[ "$WIKIROOT" = "$HOME/Nextcloud/Notes/" ]
|
||||
}
|
||||
|
||||
@test "Leaves WIKIROOT as is if it is already set" {
|
||||
export WIKIROOT="MY/CUSTOM/DIR"
|
||||
source $testfile
|
||||
[ "$WIKIROOT" = "MY/CUSTOM/DIR" ]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue