Hey i am trying to develop a sample app in groovy on grails...i have an action called login..which doesn't do anything except to render a page called login...I think there is no need to explicitly render any view called login inside the action, as my view name matches the action name.
def login = {
}
As i follow TDD..I want to assert that that response was successful..How do i do that in groovy unit testing?