Re: [rspec-users] Cucumber: Running a single feature / scenario

2011-08-23 Thread Justin Ko
Sent from my iPhone On Aug 22, 2011, at 11:25 PM, "Nishith R." wrote: > For sake of completeness, if you are using bundle in rails3, and don't > want to invoke rake [to save init time], you can also execute it the > following way: > > bundle exec cucumber --guess --profile default > path/f

Re: [rspec-users] Cucumber: Running a single feature / scenario

2011-08-22 Thread Nishith R.
For sake of completeness, if you are using bundle in rails3, and don't want to invoke rake [to save init time], you can also execute it the following way: bundle exec cucumber --guess --profile default path/feature_name.feature:line_number HTH Nishith -- Posted via http://www.ruby-forum.com/

Re: [rspec-users] Cucumber: Running a single feature / scenario

2011-08-22 Thread Nishith R.
For sake of completness, if you are using bundle in rails3, and don't want to invoke rake [to save init time], you can also execute it the following way: bundle exec cucumber --guess --profile default path/feature_name.feature:line_number HTH Nishith -- Posted via http://www.ruby-forum.com/.

Re: [rspec-users] Cucumber: Running a single feature / scenario

2011-05-20 Thread Roger Pack
cucumber path/to/file.feature --line 33 seems to still work (google led me here, too). -- Posted via http://www.ruby-forum.com/. ___ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users

Re: [rspec-users] Cucumber: Running a single feature / scenario

2009-07-08 Thread Pirkka Hartikainen
--line option has been deprecated, use the colon syntax instead. cucumber path/to/file.feature --line 33 has become cucumber path/to/file.feature:33 PS. updating this thread because of a high google page rank, it's the first search result for "cucumber running a single scenario" -- Posted vi

Re: [rspec-users] Cucumber: Running a single feature / scenario

2008-09-01 Thread Matt Wynne
On 1 Sep 2008, at 21:30, aslak hellesoy wrote: cucumber --help Example: cucumber path/to/file.feature --line 33 Or with Rake: rake features FEATURE=path/to/file.feature CUCUMBER_OPTS="--line 33" It's not documented on the Wiki yet. Pass the line number of one of the steps. I think it's broke

Re: [rspec-users] Cucumber: Running a single feature / scenario

2008-09-01 Thread David Chelimsky
On Mon, Sep 1, 2008 at 3:30 PM, aslak hellesoy <[EMAIL PROTECTED]> wrote: > On Mon, Sep 1, 2008 at 9:45 PM, David Chelimsky <[EMAIL PROTECTED]> wrote: >> On Mon, Sep 1, 2008 at 12:08 PM, Matt Wynne <[EMAIL PROTECTED]> wrote: >>> Am taking cucumber for a first spin today - first impressions are good

Re: [rspec-users] Cucumber: Running a single feature / scenario

2008-09-01 Thread aslak hellesoy
On Mon, Sep 1, 2008 at 9:45 PM, David Chelimsky <[EMAIL PROTECTED]> wrote: > On Mon, Sep 1, 2008 at 12:08 PM, Matt Wynne <[EMAIL PROTECTED]> wrote: >> Am taking cucumber for a first spin today - first impressions are good. >> How do I go about running a single feature or scenario so I don't have to

Re: [rspec-users] Cucumber: Running a single feature / scenario

2008-09-01 Thread David Chelimsky
On Mon, Sep 1, 2008 at 12:08 PM, Matt Wynne <[EMAIL PROTECTED]> wrote: > Am taking cucumber for a first spin today - first impressions are good. > How do I go about running a single feature or scenario so I don't have to > run the whole lot when I'm working on a particular one? There's no support

[rspec-users] Cucumber: Running a single feature / scenario

2008-09-01 Thread Matt Wynne
Am taking cucumber for a first spin today - first impressions are good. How do I go about running a single feature or scenario so I don't have to run the whole lot when I'm working on a particular one? cheers, Matt http://blog.mattwynne.net http://songkick.com In case you wondered: The