summaryrefslogtreecommitdiff
path: root/spec/ruby/library/csv/generate_line_spec.rb
diff options
context:
space:
mode:
authorBenoit Daloze <[email protected]>2024-02-12 10:56:33 +0100
committerBenoit Daloze <[email protected]>2024-02-12 10:56:33 +0100
commitb19d2409be0b7bac65e6e54cfb3bedc61419ec01 (patch)
tree9046a7aea28aa043053acc473646b40828ec3736 /spec/ruby/library/csv/generate_line_spec.rb
parent90a746d246d51d105d7f3e0d1c2ddf7994dd2d4b (diff)
Update to ruby/spec@ce834ad
Diffstat (limited to 'spec/ruby/library/csv/generate_line_spec.rb')
-rw-r--r--spec/ruby/library/csv/generate_line_spec.rb45
1 files changed, 21 insertions, 24 deletions
diff --git a/spec/ruby/library/csv/generate_line_spec.rb b/spec/ruby/library/csv/generate_line_spec.rb
index 0830bbdb63..656365b109 100644
--- a/spec/ruby/library/csv/generate_line_spec.rb
+++ b/spec/ruby/library/csv/generate_line_spec.rb
@@ -1,33 +1,30 @@
require_relative '../../spec_helper'
+require 'csv'
-ruby_version_is ""..."3.4" do
- require 'csv'
+describe "CSV.generate_line" do
- describe "CSV.generate_line" do
-
- it "generates an empty string" do
- result = CSV.generate_line([])
- result.should == "\n"
- end
+ it "generates an empty string" do
+ result = CSV.generate_line([])
+ result.should == "\n"
+ end
- it "generates the string 'foo,bar'" do
- result = CSV.generate_line(["foo", "bar"])
- result.should == "foo,bar\n"
- end
+ it "generates the string 'foo,bar'" do
+ result = CSV.generate_line(["foo", "bar"])
+ result.should == "foo,bar\n"
+ end
- it "generates the string 'foo;bar'" do
- result = CSV.generate_line(["foo", "bar"], col_sep: ?;)
- result.should == "foo;bar\n"
- end
+ it "generates the string 'foo;bar'" do
+ result = CSV.generate_line(["foo", "bar"], col_sep: ?;)
+ result.should == "foo;bar\n"
+ end
- it "generates the string 'foo,,bar'" do
- result = CSV.generate_line(["foo", nil, "bar"])
- result.should == "foo,,bar\n"
- end
+ it "generates the string 'foo,,bar'" do
+ result = CSV.generate_line(["foo", nil, "bar"])
+ result.should == "foo,,bar\n"
+ end
- it "generates the string 'foo;;bar'" do
- result = CSV.generate_line(["foo", nil, "bar"], col_sep: ?;)
- result.should == "foo;;bar\n"
- end
+ it "generates the string 'foo;;bar'" do
+ result = CSV.generate_line(["foo", nil, "bar"], col_sep: ?;)
+ result.should == "foo;;bar\n"
end
end