diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-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 |
12 files changed, 15 insertions, 10 deletions
@@ -1,3 +1,8 @@ +Sun Oct 19 12:28:01 2008 James Edward Gray II <[email protected]> + + * test/csv/*: Renamed tc_* files to test_* to fit in within Ruby's + testing process. + Sun Oct 19 00:15:03 2008 Tanaka Akira <[email protected]> * lib/test/unit.rb (assert_nothing_thrown): don't intern. 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" |