aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/array_inquirer_test.rb
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2017-01-15 04:29:31 +0900
committerAkira Matsuda <ronnie@dio.jp>2017-01-15 04:42:03 +0900
commit764bbb801e683c8fea08465ac14780ba11ebf695 (patch)
tree070e491db06c041f88dd90f027958d8d878b9250 /activesupport/test/array_inquirer_test.rb
parentec513098fec963b7bb30fda246cae8ed82ec718c (diff)
downloadrails-764bbb801e683c8fea08465ac14780ba11ebf695.tar.gz
rails-764bbb801e683c8fea08465ac14780ba11ebf695.tar.bz2
rails-764bbb801e683c8fea08465ac14780ba11ebf695.zip
It would be safer not to totally undef core classes' respond_to_missing?
instead, rewrite them to no-op
Diffstat (limited to 'activesupport/test/array_inquirer_test.rb')
-rw-r--r--activesupport/test/array_inquirer_test.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/activesupport/test/array_inquirer_test.rb b/activesupport/test/array_inquirer_test.rb
index 3389f15884..5b2bc82905 100644
--- a/activesupport/test/array_inquirer_test.rb
+++ b/activesupport/test/array_inquirer_test.rb
@@ -51,6 +51,11 @@ class ArrayInquirerTest < ActiveSupport::TestCase
assert_respond_to arr, :foo
assert_not_respond_to arr, :nope
ensure
- Array.send :undef_method, :respond_to_missing?
+ Array.class_eval do
+ undef_method :respond_to_missing?
+ def respond_to_missing?(name, include_private = false)
+ super
+ end
+ end
end
end