diff options
Diffstat (limited to 'api/tests/gathered_zchain_zlatest_pairs.sh')
-rwxr-xr-x | api/tests/gathered_zchain_zlatest_pairs.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/api/tests/gathered_zchain_zlatest_pairs.sh b/api/tests/gathered_zchain_zlatest_pairs.sh index 466c669..d6c1274 100755 --- a/api/tests/gathered_zchain_zlatest_pairs.sh +++ b/api/tests/gathered_zchain_zlatest_pairs.sh @@ -1,6 +1,8 @@ #!/bin/bash +PROGRAM="$(basename $0)" +printf '[%s]\n' "$PROGRAM" printf "TEST\t/seens\n" -printf "\t01:\tendpoint returns JSON...\n" +printf "\t01:\tendpoint returns JSON..." curl http://127.0.0.1:8610/v0/seens 2>/dev/null | jq > /dev/null if [ "$?" == "0" ] then @@ -8,3 +10,4 @@ then else printf '\t\t\033[0;31mFAILED\033[0;0m\n' fi +printf "\n" |