Sha256: 4a740b4ac5c6e7bcb1c69cae509e3148c98113903031e9d35b4d8257c36e85f0

Contents?: true

Size: 340 Bytes

Versions: 6

Compression:

Stored size: 340 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
require 'fastercsv'
require 'ext/faster_csv'

describe FasterCSV do
  it "should have a header converter to strip values" do
    FasterCSV::HeaderConverters.keys.should be_include(:strip)
    FasterCSV::HeaderConverters[:strip].call(' this ').should eql('this')
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fathom-0.3.7 spec/ext/faster_csv_spec.rb
fathom-0.3.6 spec/ext/faster_csv_spec.rb
fathom-0.3.4 spec/ext/faster_csv_spec.rb
fathom-0.3.3 spec/ext/faster_csv_spec.rb
fathom-0.3.2 spec/ext/faster_csv_spec.rb
fathom-0.3.1 spec/ext/faster_csv_spec.rb