Tests that integration tests don't call Controller test methods for processing. Integration tests have their own setup and teardown.
Methods
Class Public methods
fixture_table_names()
Link
Instance Public methods
test_integration_methods_called()
Link
# 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