Add sample unit tests

Two should pass, one should fail
This commit is contained in:
Marty Oehme 2019-07-27 12:38:48 +02:00
parent 0318734dd6
commit 08e15dab3a

View 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" ]
}