James Byrne wrote:
> When /should determine the party (.*) do |n|
> When "obtain the party #{n}"
> end
>
Missed the next follow on lines. Snippet should be:
When /should determine the party (.*) do |n|
When "obtain the party #{n}"
end
Then /record the party/ do
Entity.destroy_all
@party.save!
end
--
Posted via http://www.ruby-forum.com/.