[rspec-users] [Cucumber] factor out non-user steps
Jonathan Linowes
jonathan at parkerhill.com
Tue Dec 16 11:36:54 EST 2008
On Dec 16, 2008, at 6:50 AM, aidy lewis wrote:
> Hi,
>
> I have a step that has been defined by the user
>
> Given /a logged in user/ {}
>
> Now in that step I have my own step (not defined by the business) of
>
> Given "all projects have been deleted"
>
> The second step needs to be included in the first
>
> Given /a logged in user/ do
> Given("all projects have been deleted")
> end
>
> I am thinking that "all projects have been deleted" should be hidden
> in the report.
>
> Is there a way to prevent the sub step from being reported or should I
> factor that step
> off to a standard method in the features/support folder?
>
> Aidy
> _______________________________________________
> rspec-users mailing list
> rspec-users at rubyforge.org
> http://rubyforge.org/mailman/listinfo/rspec-users
or I would start with a step like
Given a site with no projects
More information about the rspec-users
mailing list