mirror of
https://github.com/jimeh/dotify.git
synced 2026-02-19 10:06:39 +00:00
16 lines
251 B
Bash
16 lines
251 B
Bash
# Set testroot variable.
|
|
testroot="$(dirname "$BASH_SOURCE")"
|
|
|
|
# Include assert.sh testing library.
|
|
source "$testroot/assert.sh"
|
|
source "$testroot/stub.sh"
|
|
|
|
#
|
|
# Additional test helpers.
|
|
#
|
|
|
|
# Silent shortcut to "cd -".
|
|
cd-back() {
|
|
cd - 1>/dev/null
|
|
}
|