diff options
author | bogdanvlviv <bogdanvlviv@gmail.com> | 2019-01-02 15:09:50 +0200 |
---|---|---|
committer | bogdanvlviv <bogdanvlviv@gmail.com> | 2019-01-02 15:11:48 +0200 |
commit | 6210c812e84a72608c73280b40bf988c36e03389 (patch) | |
tree | 2192785aa8e8c0e7f2d4eacc92e4a10f00710863 | |
parent | fb6743acc58495a63bca54221da9f38ce8227d3a (diff) | |
download | rails-6210c812e84a72608c73280b40bf988c36e03389.tar.gz rails-6210c812e84a72608c73280b40bf988c36e03389.tar.bz2 rails-6210c812e84a72608c73280b40bf988c36e03389.zip |
Remove mention about `Test::Unit::TestCase` [ci skip]
We've switched from `Test::Unit::TestCase` to `ActiveSupport::TestCase`
since Rails 2.3.
See https://edgeguides.rubyonrails.org/2_3_release_notes.html#other-railties-changes
-rw-r--r-- | actionpack/lib/action_controller/test_case.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb index a643484d96..94ccd48203 100644 --- a/actionpack/lib/action_controller/test_case.rb +++ b/actionpack/lib/action_controller/test_case.rb @@ -276,9 +276,6 @@ module ActionController # after calling +post+. If the various assert methods are not sufficient, then you # may use this object to inspect the HTTP response in detail. # - # (Earlier versions of \Rails required each functional test to subclass - # Test::Unit::TestCase and define @controller, @request, @response in +setup+.) - # # == Controller is automatically inferred # # ActionController::TestCase will automatically infer the controller under test |