2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
2017-10-28 15:15:48 +00:00
|
|
|
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
|
2017-10-28 15:15:48 +00:00
|
|
|
|
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
|
2017-10-28 15:15:48 +00:00
|
|
|
|
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?
|
2017-10-28 15:15:48 +00:00
|
|
|
end
|
|
|
|
end
|