1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/csv/liberal_parsing_spec.rb

20 lines
470 B
Ruby
Raw Normal View History

require_relative '../../spec_helper'
require 'csv'
2019-04-27 18:53:23 +02:00
describe "CSV#liberal_parsing?" do
it "returns true if illegal input is handled" do
csv = CSV.new("", liberal_parsing: true)
2020-05-03 12:28:29 +02:00
csv.should.liberal_parsing?
2019-04-27 18:53:23 +02:00
end
2019-04-27 18:53:23 +02:00
it "returns false if illegal input is not handled" do
csv = CSV.new("", liberal_parsing: false)
2020-05-03 12:28:29 +02:00
csv.should_not.liberal_parsing?
2019-04-27 18:53:23 +02:00
end
2019-04-27 18:53:23 +02:00
it "returns false by default" do
csv = CSV.new("")
2020-05-03 12:28:29 +02:00
csv.should_not.liberal_parsing?
end
end