I find myself doing this:

Scenario "logged in user visiting the home page" do
  Given "A logged in user" do
    a_logged_in_user
  end

  When "..."
  Then "..."
end

The a_logged_in_user method is a helper method in helper.rb which sets
up the state so that the user can browse the website.

Later in the story of course, I can just do 'Given "A logged in user"
and it will get the previous definition.

Is there any way to avoid that duplicated Given call at the top of
almost every story?

Mikel
_______________________________________________
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to