From 9d75ecedac4e9754ac7d9c4ccc7290df576df6b8 Mon Sep 17 00:00:00 2001 From: ubudzisz Date: Fri, 15 Jul 2016 11:10:30 +0200 Subject: modify view test to commit title modify view test to commit title-repair rubocop modify view test to commit title-repair rubocop modify view test to commit title-repair rubocop --- spec/views/projects/builds/show.html.haml_spec.rb | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/spec/views/projects/builds/show.html.haml_spec.rb b/spec/views/projects/builds/show.html.haml_spec.rb index c71705fe8e5..61004d0fed7 100644 --- a/spec/views/projects/builds/show.html.haml_spec.rb +++ b/spec/views/projects/builds/show.html.haml_spec.rb @@ -6,12 +6,10 @@ describe 'projects/builds/show' do let(:project) { create(:project) } let(:pipeline) { create(:ci_pipeline, project: project) } let(:build) { create(:ci_build, pipeline: pipeline) } - let(:commit) { project.commit } before do assign(:build, build) assign(:project, project) - assign(:commit_title, build.project.commit.title) allow(view).to receive(:can?).and_return(true) end @@ -38,15 +36,12 @@ describe 'projects/builds/show' do end end - context 'show commit title' do - before do - build.run! - render - end - - it 'show commit title' do + 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 - assert page.has_content?(commit.title) + expect(rendered).to have_content(commit_title) end end end -- cgit v1.2.1