aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/system_testing/base.rb
diff options
context:
space:
mode:
authoreileencodes <eileencodes@gmail.com>2016-08-07 09:01:16 -0400
committereileencodes <eileencodes@gmail.com>2017-02-20 15:07:31 -0500
commit0dc63281da1c7075ce63d8dba62e4230d72bfc2a (patch)
treefb849a6ad7e598ad88bc3586572745149a6eb5af /actionpack/lib/system_testing/base.rb
parent0056c9b977a4cd61334909ff950de9358ec84d74 (diff)
downloadrails-0dc63281da1c7075ce63d8dba62e4230d72bfc2a.tar.gz
rails-0dc63281da1c7075ce63d8dba62e4230d72bfc2a.tar.bz2
rails-0dc63281da1c7075ce63d8dba62e4230d72bfc2a.zip
Add configuration option for driver adapter
This allows any application to change the driver adapter based on the config settings in the test env.
Diffstat (limited to 'actionpack/lib/system_testing/base.rb')
-rw-r--r--actionpack/lib/system_testing/base.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/system_testing/base.rb b/actionpack/lib/system_testing/base.rb
index ae4236f97d..770342da82 100644
--- a/actionpack/lib/system_testing/base.rb
+++ b/actionpack/lib/system_testing/base.rb
@@ -5,5 +5,7 @@ module SystemTesting
module Base
include TestHelper
include DriverAdapter
+
+ ActiveSupport.run_load_hooks(:system_testing, self)
end
end