cucumber-attic / cucumber-tmbundle

TextMate bundle for Cucumber
http://www.benmabey.com
MIT License
204 stars 54 forks source link

regex error in feature_helper.rb, line 61 #11

Closed bitcababy closed 13 years ago

bitcababy commented 13 years ago

This expression is wrong: /([\s\t](?:given|when|then|and|but)\s+)(.)/i)

The [\s\t]* should just be \s*. \s includes tabs.

bitcababy commented 13 years ago

Actually, there are a lot of regexes that are wrong.

diabolo commented 13 years ago

Fixed that one, although wrong is a bit strong, long winded might be more accurate.

Anyhow thankyou for that fix. If you'd like to submit more please fork and ensure your changes pass the unit tests and issue a pull request.

many thanks

Andrew