Sha256: c0b7a54b63f62c11fee19972cf743862c03eaff4baeb19cfb81b19fa621ed418

Contents?: true

Size: 652 Bytes

Versions: 33

Compression:

Stored size: 652 Bytes

Contents

require 'spec_helper'

fixture_path = 'spec/fixtures'

describe 'be_able_to' do
  it 'remove_zero_values' do 
    options = {:remove_zero_values => true, :remove_empty_values => true}
    data = SmarterCSV.process("#{fixture_path}/basic.csv", options)
    data.size.should == 5
    # all the keys should be symbols
    data.each{|item| item.keys.each{|x| x.class.should be == Symbol}}

    data.each do |hash| 
      hash.keys.each do |key|
        [:first_name, :last_name, :dogs, :cats, :birds, :fish].should include( key )
      end
      hash.values.should_not include( 0 )
    end

    data.each do |h|
      h.size.should <= 6
    end
  end

end

Version data entries

33 entries across 33 versions & 2 rubygems

Version Path
smarter_csv-1.1.5 spec/smarter_csv/remove_zero_values_spec.rb
smarter_csv-1.1.4 spec/smarter_csv/remove_zero_values_spec.rb
smarter_csv-1.1.3 spec/smarter_csv/remove_zero_values_spec.rb
smarter_csv-1.1.2 spec/smarter_csv/remove_zero_values_spec.rb
smarter_csv-1.1.1 spec/smarter_csv/remove_zero_values_spec.rb
smarter_csv-1.1.0 spec/smarter_csv/remove_zero_values_spec.rb
smarter_csv-1.0.19 spec/smarter_csv/remove_zero_values_spec.rb
smarter_csv-1.0.18 spec/smarter_csv/remove_zero_values_spec.rb
smarter_csv-1.0.17 spec/smarter_csv/remove_zero_values_spec.rb
smarter_csv-1.0.16 spec/smarter_csv/remove_zero_values_spec.rb
smarter_csv-1.0.15 spec/smarter_csv/remove_zero_values_spec.rb
smarter_csv-1.0.14 spec/smarter_csv/remove_zero_values_spec.rb
smarter_csv-1.0.12 spec/smarter_csv/remove_zero_values_spec.rb