aboutsummaryrefslogtreecommitdiffstats
path: root/actionsystemtest/lib
diff options
context:
space:
mode:
authoreileencodes <eileencodes@gmail.com>2016-11-07 15:46:56 -0500
committereileencodes <eileencodes@gmail.com>2017-02-20 15:07:33 -0500
commit1db7a5c285eeb61acc998c0c27788a61bd948d5c (patch)
treec41e81e4c078bbe596f37ecdfc028fabd462e803 /actionsystemtest/lib
parent5bf0aa6745db27c45c0778f9f6e9046f9ee9fb94 (diff)
downloadrails-1db7a5c285eeb61acc998c0c27788a61bd948d5c.tar.gz
rails-1db7a5c285eeb61acc998c0c27788a61bd948d5c.tar.bz2
rails-1db7a5c285eeb61acc998c0c27788a61bd948d5c.zip
Don't load ActionSystemTest in production
By moving to the TestUnit Railtie, and doing the file requirement inside the onload call we can avoid loading ActionSystemTest in production and load it in the test env. This is important for performance reasons - loading up unnecessary files and object is expensive, especially when they should never be used in production.
Diffstat (limited to 'actionsystemtest/lib')
-rw-r--r--actionsystemtest/lib/action_system_test.rb2
-rw-r--r--actionsystemtest/lib/action_system_test/railtie.rb17
2 files changed, 0 insertions, 19 deletions
diff --git a/actionsystemtest/lib/action_system_test.rb b/actionsystemtest/lib/action_system_test.rb
index 4a80e34695..18b992a3ca 100644
--- a/actionsystemtest/lib/action_system_test.rb
+++ b/actionsystemtest/lib/action_system_test.rb
@@ -50,8 +50,6 @@ require "action_system_test/driver_adapter"
module ActionSystemTest
include ActionSystemTest::TestHelper
include ActionSystemTest::DriverAdapter
-
- ActiveSupport.run_load_hooks(:system_testing, self)
end
class ActionSystemTestCase < ActionDispatch::IntegrationTest
diff --git a/actionsystemtest/lib/action_system_test/railtie.rb b/actionsystemtest/lib/action_system_test/railtie.rb
deleted file mode 100644
index 6f4fe1b993..0000000000
--- a/actionsystemtest/lib/action_system_test/railtie.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-require "action_system_test"
-
-module ActionSystemTest
- # = System Testing Railtie
- class Railtie < Rails::Railtie # :nodoc:
- config.system_testing = ActiveSupport::OrderedOptions.new
-
- initializer "system_testing.set_configs" do |app|
- options = app.config.system_testing
- options.driver ||= ActionSystemTest.default_driver
-
- ActiveSupport.on_load(:system_testing) do
- options.each { |k,v| send("#{k}=", v) }
- end
- end
- end
-end