mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Import CSV 3.0.9
This fixes test failures on Windows. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67561 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e3b6c7c7eb
commit
3791bdf080
2 changed files with 2 additions and 2 deletions
2
NEWS
2
NEWS
|
|
@ -62,7 +62,7 @@ Regexp/String::
|
||||||
|
|
||||||
CSV::
|
CSV::
|
||||||
|
|
||||||
* Upgrade to 3.0.8.
|
* Upgrade to 3.0.9.
|
||||||
See https://github.com/ruby/csv/blob/master/NEWS.md.
|
See https://github.com/ruby/csv/blob/master/NEWS.md.
|
||||||
|
|
||||||
Date::
|
Date::
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ class TestCSVInterfaceRead < Test::Unit::TestCase
|
||||||
@data = ""
|
@data = ""
|
||||||
@data << "1\t2\t3\r\n"
|
@data << "1\t2\t3\r\n"
|
||||||
@data << "4\t5\r\n"
|
@data << "4\t5\r\n"
|
||||||
@input = Tempfile.new(["interface-read", ".csv"], options: {binmode: true})
|
@input = Tempfile.new(["interface-read", ".csv"], binmode: true)
|
||||||
@input << @data
|
@input << @data
|
||||||
@input.rewind
|
@input.rewind
|
||||||
@rows = [
|
@rows = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue