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/general.html.haml_spec.rb')
-rw-r--r--spec/views/admin/application_settings/general.html.haml_spec.rb29
1 files changed, 29 insertions, 0 deletions
diff --git a/spec/views/admin/application_settings/general.html.haml_spec.rb b/spec/views/admin/application_settings/general.html.haml_spec.rb
index 503e41eabc9..3614090d3cb 100644
--- a/spec/views/admin/application_settings/general.html.haml_spec.rb
+++ b/spec/views/admin/application_settings/general.html.haml_spec.rb
@@ -68,4 +68,33 @@ RSpec.describe 'admin/application_settings/general.html.haml' do
expect(rendered).not_to have_css('#js-add-license-toggle')
end
end
+
+ describe 'jira connect application key' do
+ it 'shows the jira connect application key section' do
+ render
+
+ expect(rendered).to have_css('#js-jira_connect-settings')
+ end
+
+ context 'when the jira_connect_oauth feature flag is disabled' do
+ before do
+ stub_feature_flags(jira_connect_oauth: false)
+ end
+
+ it 'does not show the jira connect application key section' do
+ render
+
+ expect(rendered).not_to have_css('#js-jira_connect-settings')
+ end
+ end
+ end
+
+ describe 'sign-up restrictions' do
+ it 'renders js-signup-form tag' do
+ render
+
+ expect(rendered).to match 'id="js-signup-form"'
+ expect(rendered).to match ' data-minimum-password-length='
+ end
+ end
end