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

  step 'I see summary for build' do
    expect(page).to have_content "Build ##{@build.id}"
  end

  step 'I see build trace' do
    expect(page).to have_css '#build-trace'
  end
end