Sha256: cf6b7ec59a3a5a0ad69bdd7cc27a69046810af285d48a9eb3c0f02d2da41057b
Contents?: true
Size: 924 Bytes
Versions: 8
Compression:
Stored size: 924 Bytes
Contents
Feature: Multi files Scenario: Same field order Given an input csv """ a,b a1,b1 a2,b2 """ And an input csv """ a,b a3,b3 a4,b4 """ Then you get output """ a,b a1,b1 a2,b2 a3,b3 a4,b4 """ Scenario: Different field order Given an input csv """ a,b a1,b1 a2,b2 """ And an input csv """ b,a b3,a3 b4,a4 """ Then you get output """ a,b a1,b1 a2,b2 a3,b3 a4,b4 """ Scenario: Extra field somewhere (filled in with nulls) Given an input csv """ a,b a1,b1 a2,b2 """ And an input csv """ b,a,c b3,a3,c3 b4,a4,c4 """ Then you get output """ a,b,c a1,b1, a2,b2, a3,b3,c3 a4,b4,c4 """
Version data entries
8 entries across 8 versions & 1 rubygems