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/views/admin/application_settings/_jira_connect.html.haml_spec.rb')
-rw-r--r--spec/views/admin/application_settings/_jira_connect.html.haml_spec.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/spec/views/admin/application_settings/_jira_connect.html.haml_spec.rb b/spec/views/admin/application_settings/_jira_connect.html.haml_spec.rb
index 7cfc2db5a41..af411261aa0 100644
--- a/spec/views/admin/application_settings/_jira_connect.html.haml_spec.rb
+++ b/spec/views/admin/application_settings/_jira_connect.html.haml_spec.rb
@@ -2,7 +2,7 @@
require 'spec_helper'
-RSpec.describe 'admin/application_settings/_jira_connect.html.haml' do
+RSpec.describe 'admin/application_settings/_jira_connect.html.haml', feature_category: :integrations do
let_it_be(:admin) { create(:admin) }
let(:application_setting) { build(:application_setting) }
@@ -20,4 +20,9 @@ RSpec.describe 'admin/application_settings/_jira_connect.html.haml' do
render
expect(rendered).to have_field('Jira Connect Proxy URL', type: 'text')
end
+
+ it 'renders the enable public key storage checkbox' do
+ render
+ expect(rendered).to have_field('Enable public key storage', type: 'checkbox')
+ end
end