Skip to content

Instantly share code, notes, and snippets.

@amitpatelx
Created January 20, 2017 08:55
Show Gist options
  • Save amitpatelx/7263999cb0f3a579a8d70963c8f421f3 to your computer and use it in GitHub Desktop.
Save amitpatelx/7263999cb0f3a579a8d70963c8f421f3 to your computer and use it in GitHub Desktop.
Mocking create Posts using MounteBank server
{
"port": 9999,
"protocol": "http",
"stubs": [
{
"responses": [
{
"is": {
"statusCode": 200,
"body": "{\n \"id\": \"3\"\n}"
}
}
],
"predicates": [
{
"and": [
{
"equals": {
"method": "POST"
}
},
{
"equals": {
"path": "/posts"
}
},
{
"equals": {
"body": "{\"title\":\"Thank you MounteBank\",\"content\":\"I awe you a lot\"}"
}
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment