Sha256: 394db3b4ae94a9f1266526f0fd330c071ddf532c9f9521fb8c6418bbf7db1150
Contents?: true
Size: 290 Bytes
Versions: 127
Compression:
Stored size: 290 Bytes
Contents
Given /^I visit the calculator page$/ do visit '/add' end Given /^I fill in '(.*)' for '(.*)'$/ do |value, field| fill_in(field, :with => value) end When /^I press '(.*)'$/ do |name| click_button(name) end Then /^I should see '(.*)'$/ do |text| body.should match(/#{text}/m) end
Version data entries
127 entries across 123 versions & 13 rubygems