Skip to content

Instantly share code, notes, and snippets.

@joelhelbling
Created August 29, 2009 20:00
Show Gist options
  • Save joelhelbling/177655 to your computer and use it in GitHub Desktop.
Save joelhelbling/177655 to your computer and use it in GitHub Desktop.
Given /^there is a document titled "([^\"]*)"$/ do |title|
Document.create!(:title => title, :body => 'Some content.')
end
When /^I visit the "([^\"]*)" document page$/ do |title|
visit "/documents/#{title}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment