features/basic.feature in cvg-0.0.1 vs features/basic.feature in cvg-0.0.2

- old
+ new

@@ -265,5 +265,20 @@ a,b,c yes,x,1 yes,y, yes,x,2 """ + + Scenario: Output certain fields + Given an input csv + """ + a,b,c + aa,bb,cc + aaa,bbb,ccc + """ + When you pass arguments --output-fields b,a + Then you get output + """ + b,a + bb,aa + bbb,aaa + """