Skip to content

Instantly share code, notes, and snippets.

@jqr
Created April 21, 2009 14:13
Show Gist options
  • Save jqr/99162 to your computer and use it in GitHub Desktop.
Save jqr/99162 to your computer and use it in GitHub Desktop.
# Given I have the following projects:
# | short_description |
# | Feed Dante |
# | Walk my dogs |
Given /^I have the following projects:$/ do |table|
table.hashes.each do |project_hash|
@current_user.projects.create!(project_hash)
end
end
# Given there are the following projects:
# | short_description |
# | Mow my lawn |
# | Kill my husband |
Given /^there are the following projects:$/ do |table|
table.hashes.each do |project_hash|
Project.create!(project_hash)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment