In gherkin syntax (used by Cucumber and SpecFlow, I can comment out a line by prefixing it with '#'

Is there any way to block-comment multiple lines?

link|improve this question

57% accept rate
feedback

3 Answers

up vote 5 down vote accepted

I think it is not supported by Gherkin, so you have to prefix all lines with #.

You can "workaround" this problem in Visual Studio using the multi-line editing feature. (See http://weblogs.asp.net/scottgu/archive/2010/04/26/box-selection-and-multi-line-editing-with-vs-2010.aspx). You just have to select the beginning of the lines with holding ALT and using the mouse. Using this feature you can type in all the selected lines at the same time. You can also remove all of them similarly, selecting all the # characters for deletion.

link|improve this answer
You can do the same thing in RubyMine by selecting lines and pressing Ctrl+/, and uncomment them the same way. Fabulously useful. :) – Doug Noel Apr 18 at 21:11
feedback

I don't think it's supported, actually. I have been doing Cucumber related work for about 2 years now and I never seen it.

You'll have to do lot of #-lines ;).

I would start reading the great wiki on github (https://github.com/cucumber/cucumber/wiki/Gherkin)

link|improve this answer
Thanks Marcus. Your answer is correct, but I accepted Tz_'s answer because of the workaround. – dbruning Aug 21 '11 at 5:21
1  
Whoa - that was one cool workaround. Didn't think about that. – Marcus Hammarberg Aug 22 '11 at 12:14
feedback

Yes, there is. It's called PyStrings type comments. See example at http://docs.behat.org/guides/1.gherkin.html#pystrings.

It will work if you use it just after Feature or Scenario and some other elements.

Feature: my feature
  """ some block comment
      still block comment
  """ end of block comment
Scenario: my feature
  """ some block comment
      still block comment
  """ end of block comment

One the other hand it will not work if you want to comment out some steps.

I think you can configure your IDE to comment out a line on standard key combination. For example IntelliJ recognizes *.feature files and allows to comment out line out of the box. The same possible to do with Notepad++ or even VS.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.