aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/array_inquirer_test.rb
diff options
context:
space:
mode:
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