From 79692422922748c920d46dddfb13882a76037280 Mon Sep 17 00:00:00 2001 From: nahi Date: Thu, 4 Sep 2003 16:18:59 +0000 Subject: * test/ruby: tests for ruby itself. * test/ruby/test_*.rb: split sample/test.rb into 28 test/unit testcases. some tests could not be translates... search '!!' mark to see it. * test/csv/test_csv.rb: should require 'csv', not '../lib/csv'. test runner should set load path correctly. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4498 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/csv/test_csv.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/csv') diff --git a/test/csv/test_csv.rb b/test/csv/test_csv.rb index f7dff3455..f1ba35a66 100644 --- a/test/csv/test_csv.rb +++ b/test/csv/test_csv.rb @@ -2,7 +2,7 @@ require 'test/unit' require 'tempfile' require 'fileutils' -require '../lib/csv' +require 'csv' class CSV class StreamBuf -- cgit