Changes after review
This commit is contained in:
parent
4472779b7f
commit
4ab83117fb
2 changed files with 5 additions and 3 deletions
|
@ -6,6 +6,4 @@
|
||||||
= custom_icon(status.icon)
|
= custom_icon(status.icon)
|
||||||
= status.text
|
= status.text
|
||||||
- else
|
- else
|
||||||
%span{ class: css_classes }
|
= render "ci/status/badge", status: status
|
||||||
= custom_icon(status.icon)
|
|
||||||
= status.text
|
|
||||||
|
|
|
@ -28,6 +28,10 @@ describe 'projects/builds/show', :view do
|
||||||
expect(rendered).to have_css('.ci-status.ci-success', text: 'passed')
|
expect(rendered).to have_css('.ci-status.ci-success', text: 'passed')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it 'does not render a link to the build' do
|
||||||
|
expect(rendered).not_to have_link('passed')
|
||||||
|
end
|
||||||
|
|
||||||
it 'shows build id' do
|
it 'shows build id' do
|
||||||
expect(rendered).to have_css('.js-build-id', text: build.id)
|
expect(rendered).to have_css('.js-build-id', text: build.id)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue