diff options
author | Sebastian Martinez <sebastian@wyeworks.com> | 2011-04-12 20:10:50 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-04-12 21:04:00 -0300 |
commit | a616e7a88cc35487b979d5f786092ba53aa47135 (patch) | |
tree | 2e9cc352dc58143fcc1c20ea1accc6dfe37702fe /activesupport/test/core_ext/object | |
parent | 3366479a9a6db3101ffe3827a86be0e5b50f7a5a (diff) | |
download | rails-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/core_ext/object')
-rw-r--r-- | activesupport/test/core_ext/object/inclusion_test.rb | 2 |
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]) |