diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-10-28 12:42:21 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-10-28 12:50:10 +0900 |
commit | 65e08da68f6b344243f3c7bba0aee68342ee2228 (patch) | |
tree | 6403419656ccc87e4f5dcfa95b34657aeff7049f /guides | |
parent | 12de5e202ddfca27cccc5965b3048e88718a9ace (diff) | |
download | rails-65e08da68f6b344243f3c7bba0aee68342ee2228.tar.gz rails-65e08da68f6b344243f3c7bba0aee68342ee2228.tar.bz2 rails-65e08da68f6b344243f3c7bba0aee68342ee2228.zip |
Add load hook for `ActionDispatch::SystemTestCase`
This is useful to extend `SystemTestCase`.
Also, since other test classes already have load hooks, should also be
in `SystemTestCase`.
Ref: 0510208dd1ff23baa619884c0abcae4d141fae53
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/engines.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md index a9b841e3bf..b226eac347 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -1501,6 +1501,7 @@ To hook into the initialization process of one of the following classes use the | `ActionController::Base` | `action_controller` | | `ActionController::TestCase` | `action_controller_test_case` | | `ActionDispatch::IntegrationTest` | `action_dispatch_integration_test` | +| `ActionDispatch::SystemTestCase` | `action_dispatch_system_test_case` | | `ActionMailer::Base` | `action_mailer` | | `ActionMailer::TestCase` | `action_mailer_test_case` | | `ActionView::Base` | `action_view` | |