Clint Checketts
08/24/2018, 4:49 PMmockMvc.request(PUT, "/hello") {
builder {
contentType(MediaType.APPLICATION_JSON)
content("""{"surname": "Jack"}""")
cookie(Cookie("cookieName", "Extra Things"))
}
printRequestAndResponse()
expect {
status { isBadRequest }
"$.surname" jsonPath "Jack"
}
expect { status { isOk } } //builder,actions, and expects can be called multiple times
}
PR here: https://github.com/petrbalat/kd4smt/pull/2/files#diff-2ebf96269f0c75a02d4778cbe8cd31e1R55