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

* test/csv/test_interface.rb: Trying a fix for some failing tests

on Windows.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23094 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
jeg2 2009-03-29 16:00:47 +00:00
parent 896db7d625
commit a9b53f6397
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Mon Mar 30 01:00:20 2009 James Edward Gray II <jeg2@ruby-lang.org>
* test/csv/test_interface.rb: Trying a fix for some failing tests
on Windows.
Sun Mar 29 08:59:26 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/pathname.rb (Pathname#relative_path_from): compares path

View file

@ -15,7 +15,7 @@ class TestCSVInterface < Test::Unit::TestCase
def setup
@path = File.join(File.dirname(__FILE__), "temp_test_data.csv")
File.open(@path, "w") do |file|
File.open(@path, "wb") do |file|
file << "1\t2\t3\r\n"
file << "4\t5\r\n"
end