Sha256: 72ca232e6aec09f0ee5e9495061c80bbeac078e75273048a52620865d867bdf4

Contents?: true

Size: 413 Bytes

Versions: 3

Compression:

Stored size: 413 Bytes

Contents

Given /^a feature file named "([^"]*)" with the contents:$/ do |filename, contents|
  @contents = contents
  create_feature_file(filename, @contents)
end

When /^I visit the home page$/ do
  visit "/"
end

Then /^I should see a link to "([^"]*)" with the url "([^"]*)"$/ do |text, url|
  page.should have_link text, :href => url
end

Then /^I should see "([^"]*)"$/ do |text|
  page.should have_content(text)
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wally-0.0.19 features/step_definitions/steps.rb
wally-0.0.18 features/step_definitions/steps.rb
wally-0.0.17 features/step_definitions/steps.rb