summaryrefslogtreecommitdiff
path: root/test/csv/test_row.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/csv/test_row.rb')
-rwxr-xr-xtest/csv/test_row.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/csv/test_row.rb b/test/csv/test_row.rb
index 3acceea234..a8aeb288fc 100755
--- a/test/csv/test_row.rb
+++ b/test/csv/test_row.rb
@@ -64,6 +64,9 @@ class TestCSV::Row < TestCSV
# by index
assert_equal(3, @row.field(2))
+ # by range
+ assert_equal([2,3], @row.field(1..2))
+
# missing
assert_nil(@row.field("Missing"))
assert_nil(@row.field(10))