tracks/features/step_definitions/project_steps.rb

5 lines
139 B
Ruby
Raw Normal View History

When /^I visit the "([^\"]*)" project$/ do |project_name|
project = Project.find_by_name(project_name)
visit project_path(project)
end