Sha256: 2f72b82463122f8e17fdf6d270bc5240f948cfe01f29f6574a53960af3172f80

Contents?: true

Size: 906 Bytes

Versions: 28

Compression:

Stored size: 906 Bytes

Contents

require 'spec_helper'

fixture_path = 'spec/fixtures'

# this reads a binary database dump file, which is in structure like a CSV file
# but contains control characters delimiting the rows and columns, and also 
# contains a comment section which is commented our by a leading # character

# same as binary_file_spec , but reading the file with strings as keys

describe 'be_able_to' do
  it 'loads_binary_file_with_strings_as_keys' do 
    options = {:col_sep => "\cA", :row_sep => "\cB", :comment_regexp => /^#/, :strings_as_keys => true}
    data = SmarterCSV.process("#{fixture_path}/binary.csv", options)
    data.flatten.size.should == 8
    data.each do |item|
      # all keys should be strings
      item.keys.each{|x| x.class.should be == String}
      item['timestamp'].should == 1381388409
      item['item_id'].class.should be == Fixnum
      item['name'].size.should be > 0
    end
  end
end

Version data entries

28 entries across 28 versions & 2 rubygems

Version Path
smarter_csv-1.4.2 spec/smarter_csv/binary_file2_spec.rb
smarter_csv-1.4.0 spec/smarter_csv/binary_file2_spec.rb
smarter_csv-1.3.0 spec/smarter_csv/binary_file2_spec.rb
smarter_csv-1.2.8 spec/smarter_csv/binary_file2_spec.rb
smarter_csv-1.2.7 spec/smarter_csv/binary_file2_spec.rb
pokedex-terminal-0.2.8 vendor/bundle/ruby/2.7.0/gems/smarter_csv-1.2.6/spec/smarter_csv/binary_file2_spec.rb
pokedex-terminal-0.2.7 vendor/bundle/ruby/2.7.0/gems/smarter_csv-1.2.6/spec/smarter_csv/binary_file2_spec.rb
pokedex-terminal-0.2.6 vendor/bundle/ruby/2.7.0/gems/smarter_csv-1.2.6/spec/smarter_csv/binary_file2_spec.rb
pokedex-terminal-0.2.5 vendor/bundle/ruby/2.7.0/gems/smarter_csv-1.2.6/spec/smarter_csv/binary_file2_spec.rb
pokedex-terminal-0.2.4 vendor/bundle/ruby/2.7.0/gems/smarter_csv-1.2.6/spec/smarter_csv/binary_file2_spec.rb
smarter_csv-1.2.6 spec/smarter_csv/binary_file2_spec.rb
smarter_csv-1.2.5 spec/smarter_csv/binary_file2_spec.rb
smarter_csv-1.2.4 spec/smarter_csv/binary_file2_spec.rb
smarter_csv-1.2.3 spec/smarter_csv/binary_file2_spec.rb
smarter_csv-1.2.0 spec/smarter_csv/binary_file2_spec.rb
smarter_csv-1.1.5 spec/smarter_csv/binary_file2_spec.rb
smarter_csv-1.1.4 spec/smarter_csv/binary_file2_spec.rb
smarter_csv-1.1.3 spec/smarter_csv/binary_file2_spec.rb
smarter_csv-1.1.2 spec/smarter_csv/binary_file2_spec.rb
smarter_csv-1.1.1 spec/smarter_csv/binary_file2_spec.rb