blob: 75c1a419aa40f2221b746c03ffb4af220a8325d1 [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001#!/bin/bash
2
3# $1 is the IP address of the MRC (MR Central) mock server
4
5curl -v -X PUT -d @- http://$1:1080/expectation << EOF
6{
7 "httpRequest": {
8 "method": "GET",
9 "path": "/hello"
10 },
11 "httpResponse": {
12 "body": "Hello world!",
13 "statusCode": 200
14 }
15}
16EOF
17