I'm migrating over to shoulda from rspec and I can't seem to get access to the http response. Can someone point out what I may be doing wrong?
context "doing somethin" do
setup do
get :index
end
@response.body
should respond_with :success
end
When i run this i get an error saying that @response is a nill object.