2014-10-02 12:42:54 -04:00
|
|
|
class Spinach::Features::ProjectSourceSearchCode < 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
|
2015-06-12 00:44:13 -04:00
|
|
|
expect(page).to have_content 'coffee'
|
|
|
|
expect(page).to have_content 'CONTRIBUTING.md'
|
2014-07-27 18:27:15 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should see empty result' do
|
2015-06-12 00:44:13 -04:00
|
|
|
expect(page).to have_content "We couldn't find any"
|
2013-04-14 13:07:11 -04:00
|
|
|
end
|
|
|
|
end
|