diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-10-28 14:53:31 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-28 14:53:31 +0900 |
commit | bf6456e05395583809f4565844a8dc088431fce7 (patch) | |
tree | 311a21eb9166548455267bc75b0213d7cbde865e /actionpack | |
parent | 81d4834a8565d5fa678b28c4e886cab1be04791a (diff) | |
parent | 65e08da68f6b344243f3c7bba0aee68342ee2228 (diff) | |
download | rails-bf6456e05395583809f4565844a8dc088431fce7.tar.gz rails-bf6456e05395583809f4565844a8dc088431fce7.tar.bz2 rails-bf6456e05395583809f4565844a8dc088431fce7.zip |
Merge pull request #31003 from y-yagi/add_load_hook_for_system_test_case
Add load hook for `ActionDispatch::SystemTestCase`
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/system_test_case.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/system_test_case.rb b/actionpack/lib/action_dispatch/system_test_case.rb index 78efba9eee..7246e01cff 100644 --- a/actionpack/lib/action_dispatch/system_test_case.rb +++ b/actionpack/lib/action_dispatch/system_test_case.rb @@ -131,6 +131,8 @@ module ActionDispatch end driven_by :selenium + + ActiveSupport.run_load_hooks(:action_dispatch_system_test_case, self) end SystemTestCase.start_application |