gitlab-org--gitlab-foss/features/steps/project/search_code.rb

17 lines
427 B
Ruby
Raw Normal View History

2013-04-14 17:07:11 +00:00
class ProjectSearchCode < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths
When 'I search for term "coffee"' do
fill_in "search", with: "coffee"
2013-04-14 17:07:11 +00:00
click_button "Go"
click_link 'Repository Code'
2013-04-14 17:07:11 +00:00
end
Then 'I should see files from repository containing "coffee"' do
page.should have_content "coffee"
page.should have_content " CONTRIBUTING.md"
2013-04-14 17:07:11 +00:00
end
end