aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/system_test_case.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/system_test_case.rb')
-rw-r--r--actionpack/lib/system_test_case.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/actionpack/lib/system_test_case.rb b/actionpack/lib/system_test_case.rb
index 3a621fb6f0..2072a88d22 100644
--- a/actionpack/lib/system_test_case.rb
+++ b/actionpack/lib/system_test_case.rb
@@ -1,7 +1,11 @@
-require 'system_testing/base'
+require 'system_testing/test_helper'
+require 'system_testing/driver_adapter'
module Rails
class SystemTestCase < ActionDispatch::IntegrationTest
- include SystemTesting::Base
+ include SystemTesting::TestHelper
+ include SystemTesting::DriverAdapter
+
+ ActiveSupport.run_load_hooks(:system_testing, self)
end
end