diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-12-20 16:06:01 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-12-20 16:06:01 +0100 |
commit | ec4b1bc7556848c6683546559290a6576301c05d (patch) | |
tree | b86c4a467bf189f77bf11af386b2713e95eaaaa3 /spec/views/projects | |
parent | 9c6480db8993ee6f1d8d1fac29e044dd00d66465 (diff) | |
download | gitlab-ce-ec4b1bc7556848c6683546559290a6576301c05d.tar.gz |
Add isolated view spec for pipeline stage partial
Diffstat (limited to 'spec/views/projects')
-rw-r--r-- | spec/views/projects/pipelines/_stage.html.haml_spec.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/spec/views/projects/pipelines/_stage.html.haml_spec.rb b/spec/views/projects/pipelines/_stage.html.haml_spec.rb new file mode 100644 index 00000000000..eb7f7ca4a1a --- /dev/null +++ b/spec/views/projects/pipelines/_stage.html.haml_spec.rb @@ -0,0 +1,21 @@ +require 'spec_helper' + +describe 'projects/pipelines/_stage', :view do + let(:project) { create(:project) } + let(:pipeline) { create(:ci_pipeline, project: project) } + let(:stage) { build(:ci_stage, pipeline: pipeline) } + + before do + assign :stage, stage + + create(:ci_build, name: 'test:build', + stage: stage.name, + pipeline: pipeline) + end + + it 'shows the builds in the stage' do + render + + expect(rendered).to have_text 'test:build' + end +end |