Sha256: 98fc3d8a829f2f98479992405fc08faa6f9abaddfeaa64c7d6e53589f0faa897

Contents?: true

Size: 346 Bytes

Versions: 3

Compression:

Stored size: 346 Bytes

Contents

require 'spec_helper'

describe Csv2hash do
  let(:definition)  { double('definition', type: nil) }
  let(:data_source) { nil }

  subject do
    Csv2hash::Main.new(definition, data_source, ignore_blank_line: false)
  end

  context '...' do
    specify do
      expect(subject.options.fetch(:ignore_blank_line)).to eql(false)
    end
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
csv2hash-0.6.2 spec/csv2hash_spec.rb
csv2hash-0.6.1 spec/csv2hash_spec.rb
csv2hash-0.6.0 spec/csv2hash_spec.rb