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 rails/actionpack/test/controller/integration_test.rb, line 221
def self.fixture_table_names
  []
end
Instance Public methods
test_integration_methods_called()
# File rails/actionpack/test/controller/integration_test.rb, line 225
def test_integration_methods_called
  %w( get post head put delete ).each do |verb|
    assert_nothing_raised("'#{verb}' should use integration test methods") { send(verb, '/') }
  end
end