14 lines
353 B
Ruby
14 lines
353 B
Ruby
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
|