aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/abstract_unit.rb
diff options
context:
space:
mode:
authorYasuo Honda <yasuo.honda@gmail.com>2018-12-22 01:43:05 +0000
committerYasuo Honda <yasuo.honda@gmail.com>2018-12-23 13:26:20 +0000
commit05781f1f9c0831d24ab2bf61421fe420967c60fa (patch)
treee6a014c893c7932953ceb02fabb858de0c4eea52 /activesupport/test/abstract_unit.rb
parentf9a5fd52540c6228103af38218e909557b01b17a (diff)
downloadrails-05781f1f9c0831d24ab2bf61421fe420967c60fa.tar.gz
rails-05781f1f9c0831d24ab2bf61421fe420967c60fa.tar.bz2
rails-05781f1f9c0831d24ab2bf61421fe420967c60fa.zip
No need to handle if FrozenError is available
Rails 6 requires Ruby 2.5, which introduces `FrozenError` https://docs.ruby-lang.org/en/2.5.0/NEWS.html Related to #31520
Diffstat (limited to 'activesupport/test/abstract_unit.rb')
-rw-r--r--activesupport/test/abstract_unit.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/activesupport/test/abstract_unit.rb b/activesupport/test/abstract_unit.rb
index 168d3655d3..62356e4d46 100644
--- a/activesupport/test/abstract_unit.rb
+++ b/activesupport/test/abstract_unit.rb
@@ -39,8 +39,4 @@ class ActiveSupport::TestCase
def jruby_skip(message = "")
skip message if defined?(JRUBY_VERSION)
end
-
- def frozen_error_class
- Object.const_defined?(:FrozenError) ? FrozenError : RuntimeError
- end
end