diff options
Diffstat (limited to 'test/csv/test_csv_writing.rb')
-rwxr-xr-x[-rw-r--r--] | test/csv/test_csv_writing.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/csv/test_csv_writing.rb b/test/csv/test_csv_writing.rb index eacba49613..73a27d2b96 100644..100755 --- a/test/csv/test_csv_writing.rb +++ b/test/csv/test_csv_writing.rb @@ -7,11 +7,9 @@ # Copyright 2005 James Edward Gray II. You can redistribute or modify this code # under the terms of Ruby's license. -require "test/unit" +require_relative "base" -require "csv" - -class TestCSVWriting < Test::Unit::TestCase +class TestCSV::Writing < TestCSV def test_writing [ ["\t", ["\t"]], ["foo,\"\"\"\"\"\",baz", ["foo", "\"\"", "baz"]], @@ -94,4 +92,6 @@ class TestCSVWriting < Test::Unit::TestCase CSV.generate_line( [1, "b", nil, %Q{already "quoted"}], force_quotes: true ) ) end + + with_diffrent_ofs end |