mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 17:31:40 +02:00
15 lines
232 B
Bash
15 lines
232 B
Bash
#!/bin/bash
|
|
|
|
SCRIPT_DIR=`dirname "${BASH_SOURCE[0]}"`
|
|
|
|
addTest() {
|
|
test=$1
|
|
eval "test_$test() { runTest \"$test\"; }"
|
|
suite_addTest test_$test
|
|
}
|
|
|
|
source $SCRIPT_DIR/functions.sh
|
|
source $SCRIPT_DIR/discover.sh
|
|
|
|
. shunit2
|