aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorSebastian Martinez <sebastian@wyeworks.com>2011-04-12 20:10:50 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2011-04-12 21:04:00 -0300
commita616e7a88cc35487b979d5f786092ba53aa47135 (patch)
tree2e9cc352dc58143fcc1c20ea1accc6dfe37702fe /activesupport/test
parent3366479a9a6db3101ffe3827a86be0e5b50f7a5a (diff)
downloadrails-a616e7a88cc35487b979d5f786092ba53aa47135.tar.gz
rails-a616e7a88cc35487b979d5f786092ba53aa47135.tar.bz2
rails-a616e7a88cc35487b979d5f786092ba53aa47135.zip
Update test name to the corresponding method name
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/core_ext/object/inclusion_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/core_ext/object/inclusion_test.rb b/activesupport/test/core_ext/object/inclusion_test.rb
index 25120deb81..9f2ace0ef7 100644
--- a/activesupport/test/core_ext/object/inclusion_test.rb
+++ b/activesupport/test/core_ext/object/inclusion_test.rb
@@ -30,7 +30,7 @@ class InTest < Test::Unit::TestCase
assert !3.in?(s)
end
- def test_either
+ def test_among
assert 1.among?(1,2,3)
assert !5.among?(1,2,3)
assert [1,2,3].among?([1,2,3], 2, [3,4,5])