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

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