mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
csv.rb: foreach enumerator
* lib/csv.rb (CSV.foreach): support enumerator. based on a patch by Hanmac (Hans Mackowiak) at [ruby-core:57643]. [ruby-core:57283] [Feature #8929] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43135 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6c4387b4f2
commit
28204c67ed
3 changed files with 13 additions and 0 deletions
|
@ -40,6 +40,12 @@ class TestCSV::Interface < TestCSV
|
|||
end
|
||||
end
|
||||
|
||||
def test_foreach_enum
|
||||
CSV.foreach(@path, col_sep: "\t", row_sep: "\r\n").zip(@expected) do |row, exp|
|
||||
assert_equal(exp, row)
|
||||
end
|
||||
end
|
||||
|
||||
def test_open_and_close
|
||||
csv = CSV.open(@path, "r+", col_sep: "\t", row_sep: "\r\n")
|
||||
assert_not_nil(csv)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue