diff options
author | jeg2 <jeg2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-18 15:30:24 +0000 |
---|---|---|
committer | jeg2 <jeg2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-18 15:30:24 +0000 |
commit | b7be78d774daf5b9a9fdd63e6d20e30309b9efa0 (patch) | |
tree | f7272b9cfeace2b5ee9a3a283c0085ad15b398a0 /test/csv | |
parent | 54e2cb81799f0ff7e443758b50e906ea5b1833d3 (diff) | |
download | ruby-b7be78d774daf5b9a9fdd63e6d20e30309b9efa0.tar.gz |
* test/csv/*: Renamed tc_* files to test_* to fit in within Ruby's
testing process.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19843 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/csv')
-rw-r--r-- | test/csv/test_csv_parsing.rb (renamed from test/csv/tc_csv_parsing.rb) | 0 | ||||
-rw-r--r-- | test/csv/test_csv_writing.rb (renamed from test/csv/tc_csv_writing.rb) | 0 | ||||
-rw-r--r-- | test/csv/test_data_converters.rb (renamed from test/csv/tc_data_converters.rb) | 0 | ||||
-rw-r--r-- | test/csv/test_encodings.rb (renamed from test/csv/tc_encodings.rb) | 0 | ||||
-rw-r--r-- | test/csv/test_features.rb (renamed from test/csv/tc_features.rb) | 0 | ||||
-rw-r--r-- | test/csv/test_headers.rb (renamed from test/csv/tc_headers.rb) | 0 | ||||
-rw-r--r-- | test/csv/test_interface.rb (renamed from test/csv/tc_interface.rb) | 0 | ||||
-rw-r--r-- | test/csv/test_row.rb (renamed from test/csv/tc_row.rb) | 0 | ||||
-rw-r--r-- | test/csv/test_serialization.rb (renamed from test/csv/tc_serialization.rb) | 0 | ||||
-rw-r--r-- | test/csv/test_table.rb (renamed from test/csv/tc_table.rb) | 0 | ||||
-rw-r--r-- | test/csv/ts_all.rb | 20 |
11 files changed, 10 insertions, 10 deletions
diff --git a/test/csv/tc_csv_parsing.rb b/test/csv/test_csv_parsing.rb index e391687537..e391687537 100644 --- a/test/csv/tc_csv_parsing.rb +++ b/test/csv/test_csv_parsing.rb diff --git a/test/csv/tc_csv_writing.rb b/test/csv/test_csv_writing.rb index 98e41fe9c4..98e41fe9c4 100644 --- a/test/csv/tc_csv_writing.rb +++ b/test/csv/test_csv_writing.rb diff --git a/test/csv/tc_data_converters.rb b/test/csv/test_data_converters.rb index 781450dc9e..781450dc9e 100644 --- a/test/csv/tc_data_converters.rb +++ b/test/csv/test_data_converters.rb diff --git a/test/csv/tc_encodings.rb b/test/csv/test_encodings.rb index 0a300af291..0a300af291 100644 --- a/test/csv/tc_encodings.rb +++ b/test/csv/test_encodings.rb diff --git a/test/csv/tc_features.rb b/test/csv/test_features.rb index 88e23d2f16..88e23d2f16 100644 --- a/test/csv/tc_features.rb +++ b/test/csv/test_features.rb diff --git a/test/csv/tc_headers.rb b/test/csv/test_headers.rb index 6ce5675816..6ce5675816 100644 --- a/test/csv/tc_headers.rb +++ b/test/csv/test_headers.rb diff --git a/test/csv/tc_interface.rb b/test/csv/test_interface.rb index b9e634a559..b9e634a559 100644 --- a/test/csv/tc_interface.rb +++ b/test/csv/test_interface.rb diff --git a/test/csv/tc_row.rb b/test/csv/test_row.rb index bd0aad4104..bd0aad4104 100644 --- a/test/csv/tc_row.rb +++ b/test/csv/test_row.rb diff --git a/test/csv/tc_serialization.rb b/test/csv/test_serialization.rb index 878619f58a..878619f58a 100644 --- a/test/csv/tc_serialization.rb +++ b/test/csv/test_serialization.rb diff --git a/test/csv/tc_table.rb b/test/csv/test_table.rb index 3c3cb1c155..3c3cb1c155 100644 --- a/test/csv/tc_table.rb +++ b/test/csv/test_table.rb diff --git a/test/csv/ts_all.rb b/test/csv/ts_all.rb index d380ab5318..4fadbb46e9 100644 --- a/test/csv/ts_all.rb +++ b/test/csv/ts_all.rb @@ -9,13 +9,13 @@ require "test/unit" -require "tc_csv_parsing" -require "tc_features" -require "tc_interface" -require "tc_csv_writing" -require "tc_data_converters" -require "tc_row" -require "tc_table" -require "tc_headers" -require "tc_serialization" -require "tc_encodings" +require "test_csv_parsing" +require "test_features" +require "test_interface" +require "test_csv_writing" +require "test_data_converters" +require "test_row" +require "test_table" +require "test_headers" +require "test_serialization" +require "test_encodings" |