summaryrefslogtreecommitdiff
path: root/spec/views/projects/pipelines/new.html.haml_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/views/projects/pipelines/new.html.haml_spec.rb')
-rw-r--r--spec/views/projects/pipelines/new.html.haml_spec.rb34
1 files changed, 0 insertions, 34 deletions
diff --git a/spec/views/projects/pipelines/new.html.haml_spec.rb b/spec/views/projects/pipelines/new.html.haml_spec.rb
deleted file mode 100644
index 9c5e46b6a17..00000000000
--- a/spec/views/projects/pipelines/new.html.haml_spec.rb
+++ /dev/null
@@ -1,34 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe 'projects/pipelines/new' do
- include Devise::Test::ControllerHelpers
- let_it_be(:project) { create(:project, :repository) }
- let(:pipeline) { create(:ci_pipeline, project: project) }
-
- before do
- assign(:project, project)
- assign(:pipeline, pipeline)
-
- stub_feature_flags(new_pipeline_form: false)
- end
-
- describe 'warning messages' do
- let(:warning_messages) do
- [double(content: 'warning 1'), double(content: 'warning 2')]
- end
-
- before do
- allow(pipeline).to receive(:warning_messages).and_return(warning_messages)
- end
-
- it 'displays the warnings' do
- render
-
- expect(rendered).to have_css('div.bs-callout-warning')
- expect(rendered).to have_content('warning 1')
- expect(rendered).to have_content('warning 2')
- end
- end
-end