Action Controller Test Case¶ ↑ Superclass for ActionController functional tests. Functional tests allow you to test a single controller action per test method. Use integration style controller tests over functional style controller tests.¶ ↑ Rails discourages the use of functional tests in favor of integration tests (use ActionDispatch::IntegrationTest). New Rails applications no longer generate f

