summaryrefslogtreecommitdiff
path: root/spec/ruby/library/csv/readlines_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/readlines_spec.rb
parent90a746d246d51d105d7f3e0d1c2ddf7994dd2d4b (diff)
Update to ruby/spec@ce834ad
Diffstat (limited to 'spec/ruby/library/csv/readlines_spec.rb')
-rw-r--r--spec/ruby/library/csv/readlines_spec.rb53
1 files changed, 25 insertions, 28 deletions
diff --git a/spec/ruby/library/csv/readlines_spec.rb b/spec/ruby/library/csv/readlines_spec.rb
index 9ca0859252..14dea34381 100644
--- a/spec/ruby/library/csv/readlines_spec.rb
+++ b/spec/ruby/library/csv/readlines_spec.rb
@@ -1,38 +1,35 @@
require_relative '../../spec_helper'
+require 'csv'
-ruby_version_is ""..."3.4" do
- require 'csv'
+describe "CSV.readlines" do
+ it "needs to be reviewed for spec completeness"
+end
- describe "CSV.readlines" do
- it "needs to be reviewed for spec completeness"
+describe "CSV#readlines" do
+ it "returns an Array of Array containing each element in a one-line CSV file" do
+ file = CSV.new "a, b, c"
+ file.readlines.should == [["a", " b", " c"]]
end
- describe "CSV#readlines" do
- it "returns an Array of Array containing each element in a one-line CSV file" do
- file = CSV.new "a, b, c"
- file.readlines.should == [["a", " b", " c"]]
- end
-
- it "returns an Array of Arrays containing each element in a multi-line CSV file" do
- file = CSV.new "a, b, c\nd, e, f"
- file.readlines.should == [["a", " b", " c"], ["d", " e", " f"]]
- end
+ it "returns an Array of Arrays containing each element in a multi-line CSV file" do
+ file = CSV.new "a, b, c\nd, e, f"
+ file.readlines.should == [["a", " b", " c"], ["d", " e", " f"]]
+ end
- it "returns nil for a missing value" do
- file = CSV.new "a,, b, c"
- file.readlines.should == [["a", nil, " b", " c"]]
- end
+ it "returns nil for a missing value" do
+ file = CSV.new "a,, b, c"
+ file.readlines.should == [["a", nil, " b", " c"]]
+ end
- it "raises CSV::MalformedCSVError exception if input is illegal" do
- csv = CSV.new('"quoted" field')
- -> { csv.readlines }.should raise_error(CSV::MalformedCSVError)
- end
+ it "raises CSV::MalformedCSVError exception if input is illegal" do
+ csv = CSV.new('"quoted" field')
+ -> { csv.readlines }.should raise_error(CSV::MalformedCSVError)
+ end
- it "handles illegal input with the liberal_parsing option" do
- illegal_input = '"Johnson, Dwayne",Dwayne "The Rock" Johnson'
- csv = CSV.new(illegal_input, liberal_parsing: true)
- result = csv.readlines
- result.should == [["Johnson, Dwayne", 'Dwayne "The Rock" Johnson']]
- end
+ it "handles illegal input with the liberal_parsing option" do
+ illegal_input = '"Johnson, Dwayne",Dwayne "The Rock" Johnson'
+ csv = CSV.new(illegal_input, liberal_parsing: true)
+ result = csv.readlines
+ result.should == [["Johnson, Dwayne", 'Dwayne "The Rock" Johnson']]
end
end