aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorbogdanvlviv <bogdanvlviv@gmail.com>2019-01-02 15:09:50 +0200
committerbogdanvlviv <bogdanvlviv@gmail.com>2019-01-02 15:11:48 +0200
commit6210c812e84a72608c73280b40bf988c36e03389 (patch)
tree2192785aa8e8c0e7f2d4eacc92e4a10f00710863 /actionpack/lib/action_controller
parentfb6743acc58495a63bca54221da9f38ce8227d3a (diff)
downloadrails-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
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/test_case.rb3
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