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
488 B
Ruby
Raw Normal View History

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