diff --git a/test.sh b/test.sh new file mode 100755 index 0000000..552e87d --- /dev/null +++ b/test.sh @@ -0,0 +1,9 @@ + +if [ -z ${1+x} ]; then + msg="test message" +else + msg="$1" +fi + +curl localhost:12345/add -d "{\"content\": \"$msg\", \"Title\": \"title\", \"Secret\": \"asdawdwd\", \"author\": \"me\"}" -H "Content-Type: application/json" -v +