Skip to content

Instantly share code, notes, and snippets.

@jwalgemoed
Last active December 28, 2017 10:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jwalgemoed/fcc822212ff709a067acb769fa231795 to your computer and use it in GitHub Desktop.
Save jwalgemoed/fcc822212ff709a067acb769fa231795 to your computer and use it in GitHub Desktop.
@Test
fun `Test 'Hello' with a simple DSL structure`() {
contract {
request {
path = "/api/hello/Jarno"
method = HttpMethod.GET
headers {
accept("application/json")
}
}
response {
status = HttpStatus.OK
body = """{ "message": "Hi, Jarno!" }"""
}
}.verify(testRestTemplate)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment