Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Reason why I want to run them individually, is because I need to have them individually set up in my rake file, because, My Java Heap Space fills up when I run them all together

share|improve this question
Java Heap Space? How does Java figure into this if you're using a Rake/Rails/Cucumber stack? – Marc Bollinger Jun 22 '10 at 23:13
running on jruby, i'm guessing – fakeleft Aug 10 '11 at 10:01
not directly. I'm using some libraries along with cucumber that use jruby though. I think CapyBara is one. =\ – NullVoxPopuli Aug 10 '11 at 18:04

6 Answers

up vote 16 down vote accepted

You can use:

rake FEATURE=features/adding_products.feature cucumber

but the Using Rake wiki page advises against using rake for anything but on a CI server because it's slower to start. Just use the cucumber command line instead.

share|improve this answer

The correct way is to run it using the cucumber executable if you're using Rails 2, or bundle exec cucumber if you're using Rails 3 (and thus Bundler).

To run a specific feature:

[command] features/signing_in.feature

To run a specific scenario from that feature:

[command] features/signing_in.feature:6

The line number can be any line inside that feature, but is usually the first line.

If you run rake cucumber:ok and some scenarios fail, at the bottom of the output you will see something like this:

cucumber features/sigining_in.feature:6 # Signing in via form

You can triple-click this line and paste it into your terminal to just run that scenario.

share|improve this answer
5  
To run a single scenario, you can also type this: cucumber --name "Signing in via form" – Bastien Mar 9 '11 at 13:42

The rake did not worked for me. Just replaced the rake with bundle exec, and it worked. below is a sample.

bundle exec cucumber features/users/signup.feature --require features

share|improve this answer
Worked for me. Thanks – Kevin Bedell Oct 23 '11 at 15:32
Worked for me too. If I omit the --require features cucumber failed to identify the step definitions. – Indika May 18 at 6:54

I'm not sure cucumber's tag feature was available when the question asked, but i prefer setting @active tag

  @active
  Feature ..

or

  @active
  Scenario ..

and

  cucumber --tags @active
share|improve this answer

If you use cuke4duke you can run this separately from ant or maven.

The manual states that you can use the same options as cucumber. So I would expect you can pas the filename of the feature you want to run on the commandline.

share|improve this answer

You can use script/cucumber to do individual files.

Assuming you are in the root directory of your project and you have a features folder:

./script/cucumber features/adding_products.feature

Edit: After re-reading your question, are you looking to do individual features, or scenarios?

share|improve this answer
For me, this works cucumber -r features features/adding_products.feature – ShaChris23 Jun 28 '11 at 2:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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