1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Require action_controller before any other action_controller file

This will load properly the loading hooks.

Closes rails/sass-rails#205
This commit is contained in:
Rafael Mendonça França 2014-04-10 14:57:46 -03:00
parent 6e9af5c7e5
commit 53610e5140

View file

@ -4,6 +4,7 @@ abort("Abort testing: Your Rails environment is running in production mode!") if
require 'active_support/testing/autorun'
require 'active_support/test_case'
require 'action_controller'
require 'action_controller/test_case'
require 'action_dispatch/testing/integration'
require 'rails/generators/test_case'