From dc29af2a0641f839f4a624468f73da50a614b300 Mon Sep 17 00:00:00 2001 From: nahi Date: Fri, 5 Sep 2003 17:36:32 +0000 Subject: * sync to lib/csv/tests/csv_ut.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4521 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/csv/test_csv.rb | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/test/csv/test_csv.rb b/test/csv/test_csv.rb index e58bbc1e01..f1ba35a66f 100644 --- a/test/csv/test_csv.rb +++ b/test/csv/test_csv.rb @@ -257,7 +257,7 @@ public r = CSV::Row[d(nil, true), d(2), d(3)] assert_equal([nil, '2', '3'], r.to_a, 'Null in data') - + r = CSV::Row[d(nil, true), d(nil, true), d(nil, true)] assert_equal([nil, nil, nil], r.to_a, 'Nulls') @@ -270,7 +270,7 @@ public #### CSV::Reader unit test - + def test_Reader_each file = File.open(@infile, "rb") begin @@ -441,7 +441,7 @@ public #### CSV::Writer unit test - + def test_Writer_s_new assert_raises(RuntimeError) do CSV::Writer.new(nil) @@ -1139,10 +1139,8 @@ public end def setBufSize(size) - CSV::StreamBuf.module_eval do - remove_const(:BufSize) - const_set(:BufSize, size) - end + CSV::StreamBuf.module_eval('remove_const("BufSize")') + CSV::StreamBuf.module_eval("BufSize = #{ size }") end class StrBuf < CSV::StreamBuf @@ -1284,7 +1282,7 @@ public # At first, check ruby's behaviour. assert_equal("", "abc"[3, 1]) assert_equal(nil, "abc"[4, 1]) - + setupInputStream(22, 1024) do |s| [0, 1, 9, 10, 19, 20, 21].each do |idx| assert_equal(expStr(idx, 1), s[idx, 1], idx.to_s) @@ -1348,7 +1346,7 @@ public assert_equal(nil, s.get(-1)) end end - + def test_StreamBuf_get_n setupInputStream(22, 1024) do |s| [0, 1, 9, 10, 19, 20, 21].each do |idx| -- cgit v1.2.3