diff options
-rw-r--r-- | activesupport/test/array_inquirer_test.rb | 7 | ||||
-rw-r--r-- | activesupport/test/string_inquirer_test.rb | 7 |
2 files changed, 12 insertions, 2 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 diff --git a/activesupport/test/string_inquirer_test.rb b/activesupport/test/string_inquirer_test.rb index 2a5e7d02e4..69d01fe26d 100644 --- a/activesupport/test/string_inquirer_test.rb +++ b/activesupport/test/string_inquirer_test.rb @@ -34,6 +34,11 @@ class StringInquirerTest < ActiveSupport::TestCase assert_not_respond_to str, :nope ensure - String.send :undef_method, :respond_to_missing? + String.class_eval do + undef_method :respond_to_missing? + def respond_to_missing?(name, include_private = false) + (name == :bar) || super + end + end end end |