summaryrefslogtreecommitdiff
path: root/features/steps/project/builds/summary.rb
blob: 4f94fc96354e14345d0118643e8412c237824f9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Spinach::Features::ProjectBuildsSummary < Spinach::FeatureSteps
  include SharedAuthentication
  include SharedProject
  include SharedBuilds
  include RepoHelpers

  step 'I see button to CI Lint' do
    page.within('.nav-controls') do
      ci_lint_tool_link = page.find_link('CI Lint')
      expect(ci_lint_tool_link[:href]).to eq ci_lint_path
    end
  end
end