17 lines
353 B
Bash
Executable File
17 lines
353 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Mini test-driver for path utility functions
|
|
source ./functions.source
|
|
|
|
( cd "$testdir"
|
|
|
|
if [ $(existsTest path-test) == 1 ] ; then
|
|
copyTestFile path-test.txt
|
|
runTest path-test path-test.txt
|
|
else
|
|
echo "$0: path-test executable not found. Skipping path tests."
|
|
fi
|
|
)
|
|
|
|
# That's all Folks!
|
|
##
|