Tests that integration tests don't call Controller test methods for processing. Integration tests have their own setup and teardown.

Methods
F
T
Class Public methods
fixture_table_names()
# File actionpack/test/controller/integration_test.rb, line 206
def self.fixture_table_names
  []
end
Instance Public methods
test_integration_methods_called()
# File actionpack/test/controller/integration_test.rb, line 210
def test_integration_methods_called
  reset!
  @integration_session.stubs(:generic_url_rewriter)
  @integration_session.stubs(:process)

  %w( get post head put delete ).each do |verb|
    assert_nothing_raised("'#{verb}' should use integration test methods") { __send__(verb, '/') }
  end
end