Let's say I have a simple action in my controller that ends with:
render(contentType: "text/json") {
message = 'some text'
foo = 'bar'
}
It renders correctly, as per the JSON builder documentation. However, when I attempt to unit test that response in a ControllerUnitTest, I get a blank string with controller.response.contentAsString
. I even tried controller.renderArgs
, but that just contains contentType: "text/json"
.
When I convert the JSON to a map, and marshall it as JSON
, then I can test properly. But is there a way to unit test the code as it stands?