add modification to commit title test
add modification to commit title test add empty line
This commit is contained in:
parent
af44c0ba86
commit
4ff3ef6f92
1 changed files with 13 additions and 9 deletions
|
@ -4,7 +4,10 @@ describe 'projects/builds/show' do
|
|||
include Devise::TestHelpers
|
||||
|
||||
let(:project) { create(:project) }
|
||||
let(:pipeline) { create(:ci_pipeline, project: project) }
|
||||
let(:pipeline) do
|
||||
create(:ci_pipeline, project: project,
|
||||
sha: project.commit.id)
|
||||
end
|
||||
let(:build) { create(:ci_build, pipeline: pipeline) }
|
||||
|
||||
before do
|
||||
|
@ -36,13 +39,14 @@ describe 'projects/builds/show' do
|
|||
end
|
||||
end
|
||||
|
||||
describe 'projects/builds/show/commit title' do
|
||||
let(:commit_title) {build.project.commit.title}
|
||||
|
||||
it 'shows commit title' do
|
||||
within('p.build-light-text.append-bottom-0') do
|
||||
expect(rendered).to have_content(commit_title)
|
||||
end
|
||||
end
|
||||
describe 'commit title in sidebar' do
|
||||
let(:commit_title) { project.commit.title }
|
||||
|
||||
it 'shows commit title and not show commit message' do
|
||||
render
|
||||
|
||||
expect(rendered).to have_css('p.build-light-text.append-bottom-0',
|
||||
text: /\A\n#{Regexp.escape(commit_title)}\n\Z/)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue