summary.rb 371 字节
Newer Older
1 2 3 4 5 6
class Spinach::Features::ProjectBuildsSummary < Spinach::FeatureSteps
  include SharedAuthentication
  include SharedProject
  include SharedBuilds
  include RepoHelpers

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