Sha256: 6086ed72ab9a0183a5b6132ee2c1ccf8af9057992e30d934f9dc4f86fe39b890

Contents?: true

Size: 413 Bytes

Versions: 7

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 should redirected to the "([^"]*)" project page$/ do |project|
  page.current_url.should include "/projects/#{project}"
end

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

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
wally-0.0.40 features/step_definitions/welcome_page.rb
wally-0.0.39 features/step_definitions/welcome_page.rb
wally-0.0.38 features/step_definitions/welcome_page.rb
wally-0.0.37 features/step_definitions/welcome_page.rb
wally-0.0.36 features/step_definitions/welcome_page.rb
wally-0.0.35 features/step_definitions/welcome_page.rb
wally-0.0.34 features/step_definitions/welcome_page.rb