Tests that integration tests don’t call Controller test methods for processing. Integration tests have their own setup and teardown.
Methods
Class Public methods
Source: show
# File rails/actionpack/test/controller/integration_test.rb, line 221 def self.fixture_table_names [] end
Instance Public methods
Source: show
# 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