summaryrefslogtreecommitdiff
path: root/spec/ruby/library/csv/liberal_parsing_spec.rb
blob: a2dda36c99c5d9e9d2d32e73c6d3a192ac69d4f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require_relative '../../spec_helper'
require 'csv'

ruby_version_is '2.4' do
  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

    it "returns false if illegal input is not handled" do
      csv = CSV.new("", liberal_parsing: false)
      csv.liberal_parsing?.should == false
    end

    it "returns false by default" do
      csv = CSV.new("")
      csv.liberal_parsing?.should == false
    end
  end
end