Created
August 25, 2015 16:27
-
-
Save spencergibb/0c6e37f7729c61eebd29 to your computer and use it in GitHub Desktop.
wiremock stubs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "request": { | |
| "method": "GET", | |
| "url": "/foo" | |
| }, | |
| "response": { | |
| "status": 200, | |
| "headers": { | |
| "Content-Type": "application/json;charset=UTF-8" | |
| }, | |
| "body": "{\"value\":42}" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "request": { | |
| "method": "GET", | |
| "url": "/foos" | |
| }, | |
| "response": { | |
| "status": 200, | |
| "headers": { | |
| "Content-Type": "application/json;charset=UTF-8" | |
| }, | |
| "body": "[{\"value\":42},{\"value\":100}]" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment