Methods
T
Instance Public methods
test_flash_responder_executed()
# File actionpack/test/controller/mime_responds_test.rb, line 1190
def test_flash_responder_executed
  get :index
  assert_equal 'Success', flash[:notice]
end
test_respond_with_block_executed()
# File actionpack/test/controller/mime_responds_test.rb, line 1185
def test_respond_with_block_executed
  get :index
  assert_equal 'HTML', @response.body
end