Last active
March 31, 2016 02:56
-
-
Save up1/e71de6c7f1dada28a15701b76360ff1f to your computer and use it in GitHub Desktop.
Demo WireMock
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": { | |
| "urlPattern": "/products", | |
| "method": "GET" | |
| }, | |
| "response": { | |
| "status": 200, | |
| "headers": | |
| { | |
| "Content-Type" : "application/json" | |
| }, | |
| "body": "[{\"id\": 1,\"name\": \"Product 1\",\"price\": 100.50}]" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment