Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/helpers/web_ide_button_helper_spec.rb')
-rw-r--r--spec/helpers/web_ide_button_helper_spec.rb45
1 files changed, 45 insertions, 0 deletions
diff --git a/spec/helpers/web_ide_button_helper_spec.rb b/spec/helpers/web_ide_button_helper_spec.rb
new file mode 100644
index 00000000000..3dd46021c11
--- /dev/null
+++ b/spec/helpers/web_ide_button_helper_spec.rb
@@ -0,0 +1,45 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe WebIdeButtonHelper do
+ describe '#show_pipeline_editor_button?' do
+ subject(:result) { helper.show_pipeline_editor_button?(project, path) }
+
+ let_it_be(:project) { build(:project) }
+
+ context 'when can view pipeline editor' do
+ before do
+ allow(helper).to receive(:can_view_pipeline_editor?).and_return(true)
+ end
+
+ context 'when path is ci config path' do
+ let(:path) { project.ci_config_path_or_default }
+
+ it 'returns true' do
+ expect(result).to eq(true)
+ end
+ end
+
+ context 'when path is not config path' do
+ let(:path) { '/' }
+
+ it 'returns false' do
+ expect(result).to eq(false)
+ end
+ end
+ end
+
+ context 'when can not view pipeline editor' do
+ before do
+ allow(helper).to receive(:can_view_pipeline_editor?).and_return(false)
+ end
+
+ let(:path) { project.ci_config_path_or_default }
+
+ it 'returns false' do
+ expect(result).to eq(false)
+ end
+ end
+ end
+end