Move deployable conditional to variable; fix pipelines_spec

This commit is contained in:
Annabel Dunstone 2016-08-17 10:48:49 -05:00
parent bfe2259bb7
commit 2c23465d05
2 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,7 @@
%li.build{class: ("playable" if subject.playable? && can?(current_user, :update_build, @project))}
- is_playable = subject.playable? && can?(current_user, :update_build, @project)
%li.build{class: ("playable" if is_playable)}
.build-content
- if subject.playable? && can?(current_user, :update_build, @project)
- if is_playable
= link_to play_namespace_project_build_path(subject.project.namespace, subject.project, subject, return_to: request.original_url), method: :post, title: 'Play' do
= render_status_with_link('build', 'play')
= subject.name

View File

@ -193,7 +193,11 @@ describe "Pipelines" do
end
context 'playing manual build' do
before { click_link('Play') }
before do
within '.pipeline-holder' do
click_link('Play')
end
end
it { expect(@manual.reload).to be_pending }
end