aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/array_inquirer_test.rb
diff options
context:
space:
mode:
authorLeigh Halliday <leigh.halliday@thescore.com>2015-08-28 16:00:48 -0400
committerLeigh Halliday <leigh.halliday@thescore.com>2015-08-28 16:20:02 -0400
commit7abbe137b7d19686f3a3be1414fadd41b7886334 (patch)
tree2aaa6eaef47d28ceb30612ebf796ea265b105273 /activesupport/test/array_inquirer_test.rb
parentcbe7899f9d5fece4749f75828fd120d67056f356 (diff)
downloadrails-7abbe137b7d19686f3a3be1414fadd41b7886334.tar.gz
rails-7abbe137b7d19686f3a3be1414fadd41b7886334.tar.bz2
rails-7abbe137b7d19686f3a3be1414fadd41b7886334.zip
ArrayInquirer to correctly find symbols or strings
The problem existed where if your ArrayInquirer values were strings but you checked them using any? with a symbol, it would not find the value. Now it will correctly check whether both the String form or the Symbol form are included in the Array. `
Diffstat (limited to 'activesupport/test/array_inquirer_test.rb')
-rw-r--r--activesupport/test/array_inquirer_test.rb9
1 files changed, 7 insertions, 2 deletions
diff --git a/activesupport/test/array_inquirer_test.rb b/activesupport/test/array_inquirer_test.rb
index b25e5cca86..263ab3802b 100644
--- a/activesupport/test/array_inquirer_test.rb
+++ b/activesupport/test/array_inquirer_test.rb
@@ -3,7 +3,7 @@ require 'active_support/core_ext/array'
class ArrayInquirerTest < ActiveSupport::TestCase
def setup
- @array_inquirer = ActiveSupport::ArrayInquirer.new([:mobile, :tablet])
+ @array_inquirer = ActiveSupport::ArrayInquirer.new([:mobile, :tablet, 'api'])
end
def test_individual
@@ -18,6 +18,11 @@ class ArrayInquirerTest < ActiveSupport::TestCase
assert_not @array_inquirer.any?(:desktop, :watch)
end
+ def test_any_string_symbol_mismatch
+ assert @array_inquirer.any?('mobile')
+ assert @array_inquirer.any?(:api)
+ end
+
def test_any_with_block
assert @array_inquirer.any? { |v| v == :mobile }
assert_not @array_inquirer.any? { |v| v == :desktop }
@@ -28,7 +33,7 @@ class ArrayInquirerTest < ActiveSupport::TestCase
end
def test_inquiry
- result = [:mobile, :tablet].inquiry
+ result = [:mobile, :tablet, 'api'].inquiry
assert_instance_of ActiveSupport::ArrayInquirer, result
assert_equal @array_inquirer, result