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 | 97c5c6441ee981441d7faf5c75e26dfa2f844c88 (patch) | |
tree | f7272b9cfeace2b5ee9a3a283c0085ad15b398a0 /test/csv | |
parent | d40af068bf7d73a2ee2222ec7dc7f028ca044ec2 (diff) | |
download | ruby-97c5c6441ee981441d7faf5c75e26dfa2f844c88.tar.gz ruby-97c5c6441ee981441d7faf5c75e26dfa2f844c88.tar.xz ruby-97c5c6441ee981441d7faf5c75e26dfa2f844c88.zip |
* test/csv/*: Renamed tc_* files to test_* to fit in within Ruby's
testing process.
git-svn-id: http://svn.ruby-lang.org/repos/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 e39168753..e39168753 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 98e41fe9c..98e41fe9c 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 781450dc9..781450dc9 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 0a300af29..0a300af29 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 88e23d2f1..88e23d2f1 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 6ce567581..6ce567581 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 b9e634a55..b9e634a55 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 bd0aad410..bd0aad410 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 878619f58..878619f58 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 3c3cb1c15..3c3cb1c15 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 d380ab531..4fadbb46e 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" |