aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/array_inquirer_test.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-03-27 16:25:13 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-03-27 16:25:13 -0300
commit9420de59f5b7f5ceac77e28e6c326ec145f71f80 (patch)
treedbe76919d5abd59d37d2837f05a9980e9183abac /activesupport/test/array_inquirer_test.rb
parent5cb8e0046cf93d1e5468db8abb95a1f7b8a04b42 (diff)
downloadrails-9420de59f5b7f5ceac77e28e6c326ec145f71f80.tar.gz
rails-9420de59f5b7f5ceac77e28e6c326ec145f71f80.tar.bz2
rails-9420de59f5b7f5ceac77e28e6c326ec145f71f80.zip
Remove Array#inquiry
We are promoting too much a feature that will not be widler used. So for now lets keep just the ArrayInquirer constructor.
Diffstat (limited to 'activesupport/test/array_inquirer_test.rb')
-rw-r--r--activesupport/test/array_inquirer_test.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/activesupport/test/array_inquirer_test.rb b/activesupport/test/array_inquirer_test.rb
index 488e0d34a9..97adea85e6 100644
--- a/activesupport/test/array_inquirer_test.rb
+++ b/activesupport/test/array_inquirer_test.rb
@@ -25,11 +25,4 @@ class ArrayInquirerTest < ActiveSupport::TestCase
def test_respond_to
assert_respond_to @array_inquirer, :development?
end
-
- def test_inquiry
- result = [:mobile, :tablet].inquiry
-
- assert_instance_of ActiveSupport::ArrayInquirer, result
- assert_equal @array_inquirer, result
- end
end