Sha256: 7c556ba7f76d5226b3129331c035fa9e8a88b737e6e409dc1a9b4a5568178dcc

Contents?: true

Size: 408 Bytes

Versions: 13

Compression:

Stored size: 408 Bytes

Contents

Given /^a feature file named "([^"]*)" with the contents:$/ do |filename, contents|
  @contents = contents
  create_feature(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

13 entries across 13 versions & 1 rubygems

Version Path
wally-0.0.33 features/step_definitions/steps.rb
wally-0.0.32 features/step_definitions/steps.rb
wally-0.0.31 features/step_definitions/steps.rb
wally-0.0.30 features/step_definitions/steps.rb
wally-0.0.29 features/step_definitions/steps.rb
wally-0.0.28 features/step_definitions/steps.rb
wally-0.0.27 features/step_definitions/steps.rb
wally-0.0.26 features/step_definitions/steps.rb
wally-0.0.25 features/step_definitions/steps.rb
wally-0.0.24 features/step_definitions/steps.rb
wally-0.0.22 features/step_definitions/steps.rb
wally-0.0.21 features/step_definitions/steps.rb
wally-0.0.20 features/step_definitions/steps.rb