1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

added Range#count? for Ruby 1.8

Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
This commit is contained in:
Diego Carrion 2011-02-19 21:13:07 -02:00 committed by Santiago Pastorino
parent 289cc15f1a
commit b0da0dd834
3 changed files with 16 additions and 0 deletions

View file

@ -2,3 +2,4 @@ require 'active_support/core_ext/range/blockless_step'
require 'active_support/core_ext/range/conversions'
require 'active_support/core_ext/range/include_range'
require 'active_support/core_ext/range/overlaps'
require 'active_support/core_ext/range/cover'

View file

@ -0,0 +1,3 @@
class Range
alias_method(:cover?, :include?) unless instance_methods.include?(:cover?)
end

View file

@ -62,4 +62,16 @@ class RangeTest < Test::Unit::TestCase
(1..10).step(2) {|i| array << i }
assert_equal [1,3,5,7,9], array
end
if RUBY_VERSION < '1.9'
def test_cover
assert((1..3).cover?(2))
assert !(1..3).cover?(4)
end
else
def test_cover_is_not_override
range = (1..3)
assert range.method(:include?) != range.method(:cover?)
end
end
end