Re: [rspec-users] [Cucumber] Enforce a skip on a non-implemented step

2009-02-25 Thread aidy lewis
Hi Josh et al On 25/02/2009, Josh Knowles wrote: > On Wed, Feb 25, 2009 at 5:52 AM, aidy lewis wrote: > > Hi, > > > > When we create step defintions. For example: > > > > When /^that data is loaded$/ do > > > > end > > > > Are you familiar with the "pending" method? > > i.e. > > > When /

Re: [rspec-users] [Cucumber] Enforce a skip on a non-implemented step

2009-02-25 Thread Josh Knowles
On Wed, Feb 25, 2009 at 5:52 AM, aidy lewis wrote: > Hi, > > When we create step defintions. For example: > > When /^that data is loaded$/ do > > end Are you familiar with the "pending" method? i.e. When /^that data is loaded$/ pending end ___ rspe

Re: [rspec-users] [Cucumber] Enforce a skip on a non-implemented step

2009-02-25 Thread Joseph Wilk
aidy lewis wrote: Hi, When we create step defintions. For example: When /^that data is loaded$/ do end The above is seen in the Cucucmber run as implemented. Is it possible to put something within this method to enforce a skip flag? Do you mean something like the 'pending' funct

Re: [rspec-users] [Cucumber] Enforce a skip on a non-implemented step

2009-02-25 Thread aslak hellesoy
On Wed, Feb 25, 2009 at 11:52 AM, aidy lewis wrote: > Hi, > > When we create step defintions. For example: > > When /^that data is loaded$/ do > > end > > The above is seen in the Cucucmber run as implemented. > > Is it possible to put something within this method to enforce a skip flag? > I'm no