aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/railtie.rb
diff options
context:
space:
mode:
authorGeorge Claghorn <george@basecamp.com>2019-05-16 09:02:36 -0400
committerGitHub <noreply@github.com>2019-05-16 09:02:36 -0400
commitc8396e030f4b1edd48340975696dcaf6aa8291c9 (patch)
tree6246c1d3f8ac1c8212b613cc3ced8885c9fcc382 /actionpack/lib/action_dispatch/railtie.rb
parent9c87d2316adf36cf33b1b7afe8d779bf420c52a7 (diff)
downloadrails-c8396e030f4b1edd48340975696dcaf6aa8291c9.tar.gz
rails-c8396e030f4b1edd48340975696dcaf6aa8291c9.tar.bz2
rails-c8396e030f4b1edd48340975696dcaf6aa8291c9.zip
Permit running jobs in system tests
Inherit from ActiveSupport::TestCase instead of ActionDispatch::IntegrationTest. Active Job automatically mixes its test helper into the latter, forcibly setting the test queue adapter before Capybara starts its app server. As a bonus, we no longer need to remove the parts of the ActionDispatch::IntegrationTest API we don’t want to expose.
Diffstat (limited to 'actionpack/lib/action_dispatch/railtie.rb')
-rw-r--r--actionpack/lib/action_dispatch/railtie.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/railtie.rb b/actionpack/lib/action_dispatch/railtie.rb
index efc3988bc3..5f711c7348 100644
--- a/actionpack/lib/action_dispatch/railtie.rb
+++ b/actionpack/lib/action_dispatch/railtie.rb
@@ -52,5 +52,11 @@ module ActionDispatch
ActionDispatch.test_app = app
end
+
+ initializer "action_dispatch.system_tests" do |app|
+ ActiveSupport.on_load(:action_dispatch_system_test_case) do
+ include app.routes.url_helpers
+ end
+ end
end
end