Sha256: 63f36b8c95dd4a511560d8d6ae55db2402e4852263b1f66aeefd8764ac557d45

Contents?: true

Size: 454 Bytes

Versions: 6

Compression:

Stored size: 454 Bytes

Contents

Given /^there aren't any projects$/ do
end

When /^I view the welcome page$/ do
  visit "/"
end

Then /^I am redirected to the "([^"]*)" project page$/ do |project|
  sleep 1
  page.current_path.should include "/projects/#{project}"
end

When /^I select the project "([^"]*)"$/ do |project|
  select(project, :from => "projects")
end

Then /^I see the wally README$/ do
  page.should have_content "Wally is a web-based Cucumber viewer and navigator"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
wally-0.0.47 features/step_definitions/welcome_page.rb
wally-0.0.46 features/step_definitions/welcome_page.rb
wally-0.0.45 features/step_definitions/welcome_page.rb
wally-0.0.44 features/step_definitions/welcome_page.rb
wally-0.0.43 features/step_definitions/welcome_page.rb
wally-0.0.42 features/step_definitions/welcome_page.rb