Slackbot
08/30/2023, 12:52 PMtylervz
08/31/2023, 3:33 PMPeter-Frank Spierenburg
09/01/2023, 7:35 PM./grailsw test-appPeter-Frank Spierenburg
09/01/2023, 7:37 PM./grailsw generate-controller User. I populated the TODO, but the tests fail, and I do not understand why.mattias_reichel
09/05/2023, 12:53 PMview.render(...) the failing tests passes.
void "test the index action returns the correct response"() {
given:
controller.userService = Mock(UserService) {
1 * list(_) >> []
1 * count() >> 0
}
when: "the index action is executed"
controller.index()
and: "the view is rendered"
controller.modelAndView.view.render model, request, response
then:"the response is correct"
response.text == '[]'
}