features/basic.feature in cvg-0.1.1 vs features/basic.feature in cvg-0.1.2
- old
+ new
@@ -298,5 +298,26 @@
"""
b,a
bb,aa
bbb,aaa
"""
+
+ Scenario: Any of fields is present
+ Given an input csv
+ """
+ a,b,c,d
+ yes,x,
+ yes,,x,
+ no,,,x
+ yes,_,,
+ yes,,_,
+ no," ",,
+ """
+ When you pass arguments --any-present b,c
+ Then you get output
+ """
+ a,b,c,d
+ yes,x,,
+ yes,,x,
+ yes,_,,
+ yes,,_,
+ """