Created
September 30, 2013 18:40
-
-
Save cheezy/6768164 to your computer and use it in GitHub Desktop.
updated steps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Given(/^We wish to enter a new product$/) do | |
visit ProductPage | |
#click_link 'New Product' | |
end | |
When(/^The following product is entered$/) do |table| | |
data = table.rows_hash | |
on(ProductPage) do |page| | |
page.title = data['title'] | |
page.description = data['description'] | |
page.create_product | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment