Sha256: 06134b6f3d130b73f89e96e78fa42adb8b9f123e05521584b9d4a588b6848b93

Contents?: true

Size: 413 Bytes

Versions: 1

Compression:

Stored size: 413 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 /^"([^"]*)" is rendered$/ do |text|
  page.should have_content text
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
wally-0.0.41 features/step_definitions/welcome_page.rb