11 lines
190 B
Bash
11 lines
190 B
Bash
|
#!/bin/bash
|
||
|
source "$(dirname "$0")/src/exprash.sh";
|
||
|
|
||
|
source "$(dirname "$0")/tests/utils.sh";
|
||
|
|
||
|
printf '%s\n' "Routes:";
|
||
|
source "$(dirname "$0")/tests/routes.sh";
|
||
|
|
||
|
printf '\n';
|
||
|
testSummary;
|