burtlo / yard-cucumber

YARD extension that adds Cucumber Features, Tags, and Step Definitions
MIT License
128 stars 46 forks source link

Steps with optional parameter shows as unused #71

Open ark-konopacki opened 8 years ago

ark-konopacki commented 8 years ago

steps like Then(/^I see the About screen(?: with data)?$/) do shows as unused if i use it without optional parameter like "Then I see the About screen" i tried instead of (?: with data)? use (?: with data| ) but it result the same behavior