aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r--activesupport/test/core_ext/range_ext_test.rb11
1 files changed, 5 insertions, 6 deletions
diff --git a/activesupport/test/core_ext/range_ext_test.rb b/activesupport/test/core_ext/range_ext_test.rb
index c4945ee985..acb6baf432 100644
--- a/activesupport/test/core_ext/range_ext_test.rb
+++ b/activesupport/test/core_ext/range_ext_test.rb
@@ -10,7 +10,7 @@ class RangeTest < Test::Unit::TestCase
date_range = Time.utc(2005, 12, 10, 15, 30)..Time.utc(2005, 12, 10, 17, 30)
assert_equal "BETWEEN '2005-12-10 15:30:00' AND '2005-12-10 17:30:00'", date_range.to_s(:db)
end
-
+
def test_overlaps_last_inclusive
assert((1..5).overlaps?(5..10))
end
@@ -22,11 +22,11 @@ class RangeTest < Test::Unit::TestCase
def test_overlaps_first_inclusive
assert((5..10).overlaps?(1..5))
end
-
+
def test_overlaps_first_exclusive
assert !(5..10).overlaps?(1...5)
end
-
+
def test_should_include_identical_inclusive
assert((1..10).include?(1..10))
end
@@ -46,11 +46,11 @@ class RangeTest < Test::Unit::TestCase
def test_should_not_include_overlapping_first
assert !(2..8).include?(1..3)
end
-
+
def test_should_not_include_overlapping_last
assert !(2..8).include?(5..9)
end
-
+
def test_blockless_step
assert_equal [1,3,5,7,9], (1..10).step(2)
end
@@ -60,5 +60,4 @@ class RangeTest < Test::Unit::TestCase
(1..10).step(2) {|i| array << i }
assert_equal [1,3,5,7,9], array
end
-
end