mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-23 11:36:09 +10:00
15 lines
353 B
Ruby
15 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
|