summaryrefslogtreecommitdiff
path: root/qa/spec/scenario/test/integration/ldap_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/spec/scenario/test/integration/ldap_spec.rb')
-rw-r--r--qa/spec/scenario/test/integration/ldap_spec.rb12
1 files changed, 10 insertions, 2 deletions
diff --git a/qa/spec/scenario/test/integration/ldap_spec.rb b/qa/spec/scenario/test/integration/ldap_spec.rb
index 198856aec3f..9019c6562b6 100644
--- a/qa/spec/scenario/test/integration/ldap_spec.rb
+++ b/qa/spec/scenario/test/integration/ldap_spec.rb
@@ -1,9 +1,17 @@
# frozen_string_literal: true
-describe QA::Scenario::Test::Integration::LDAP do
+describe QA::Scenario::Test::Integration::LDAPNoSSL do
context '#perform' do
it_behaves_like 'a QA scenario class' do
- let(:tags) { [:ldap] }
+ let(:tags) { [:ldap_no_ssl] }
+ end
+ end
+end
+
+describe QA::Scenario::Test::Integration::LDAPSSL do
+ context '#perform' do
+ it_behaves_like 'a QA scenario class' do
+ let(:tags) { [:ldap_ssl] }
end
end
end