aboutsummaryrefslogtreecommitdiffstats
path: root/test/csv
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-08-21 04:50:18 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-08-21 04:50:18 +0000
commitd059d718b505bacbf7af6e9c473eb95391d481d0 (patch)
tree7d4cdd7df6c1fd25a31f88df68c52ad4cbda5e05 /test/csv
parent9bb6a05283ce7f3deb57c707b16c60b43abd3e97 (diff)
downloadruby-d059d718b505bacbf7af6e9c473eb95391d481d0.tar.gz
remove trainling spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36750 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/csv')
-rwxr-xr-xtest/csv/test_encodings.rb2
-rwxr-xr-xtest/csv/test_features.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/test/csv/test_encodings.rb b/test/csv/test_encodings.rb
index 5ff6d33821..85ed21a9d6 100755
--- a/test/csv/test_encodings.rb
+++ b/test/csv/test_encodings.rb
@@ -329,7 +329,7 @@ class TestCSV::Encodings < TestCSV
yield encoding
end
end
-
+
def no_warnings
old_verbose, $VERBOSE = $VERBOSE, nil
yield
diff --git a/test/csv/test_features.rb b/test/csv/test_features.rb
index ded876abbe..698d92144d 100755
--- a/test/csv/test_features.rb
+++ b/test/csv/test_features.rb
@@ -274,13 +274,13 @@ class TestCSV::Features < TestCSV
assert(CSV::VERSION.frozen?)
assert_match(/\A\d\.\d\.\d\Z/, CSV::VERSION)
end
-
+
def test_accepts_comment_skip_lines_option
assert_nothing_raised(ArgumentError) do
CSV.new nil, :skip_lines => /\A\s*#/
end
end
-
+
def test_accepts_comment_defaults_to_nil
c = CSV.new nil
assert_equal c.skip_lines, nil