summaryrefslogtreecommitdiff
path: root/features/steps/project/source/search_code.rb
blob: 9c2864cc93637303d0bc7a5f186c85f64a5efd60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class Spinach::Features::ProjectSourceSearchCode < Spinach::FeatureSteps
  include SharedAuthentication
  include SharedProject
  include SharedPaths

  step 'I search for term "coffee"' do
    fill_in "search", with: "coffee"
    click_button "Go"
  end

  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
    page.should have_content "We couldn't find any matching"
  end
end