Jonas Nicklas
unread,Nov 1, 2012, 4:38:30 AM11/1/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ruby-...@googlegroups.com
You can think that background->before, scenarion->it. Kind of like if
you were using the Capybara feature DSL. If you add your own before,
it will be loaded before the feature file is loaded, since RSpec's
before blocks are load order dependent, it will be run first. So the
order would be:
Your before block
Background
Scenario
Your after block
Makes sense?
/Jonas