2014-09-22 10:30:25 -04:00
|
|
|
class Spinach::Features::ProjectSearchCode < Spinach::FeatureSteps
|
2013-04-14 13:07:11 -04:00
|
|
|
include SharedAuthentication
|
|
|
|
include SharedProject
|
|
|
|
include SharedPaths
|
|
|
|
|
2014-07-27 18:27:15 -04:00
|
|
|
step 'I search for term "coffee"' do
|
2014-07-31 09:20:47 -04:00
|
|
|
fill_in "search", with: "coffee"
|
2013-04-14 13:07:11 -04:00
|
|
|
click_button "Go"
|
|
|
|
end
|
|
|
|
|
2014-07-27 18:27:15 -04:00
|
|
|
step 'I should see files from repository containing "coffee"' do
|
|
|
|
page.should have_content 'coffee'
|
|
|
|
page.should have_content 'CONTRIBUTING.md'
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should see empty result' do
|
2014-08-27 04:55:42 -04:00
|
|
|
page.should have_content "We couldn't find any matching"
|
2013-04-14 13:07:11 -04:00
|
|
|
end
|
|
|
|
end
|