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:
authorSanad Liaquat <sliaquat@gitlab.com>2018-10-24 15:43:30 +0300
committerSanad Liaquat <sliaquat@gitlab.com>2018-10-24 15:43:30 +0300
commit7983c798af6f2f01748b67ea3cdbc2dec2554604 (patch)
treedc8e178bc983b39324bf58802f09c806c8c4543a /qa/spec/scenario/test/integration/ldap_spec.rb
parent38a6ecbe3ef69273dd05d79947c5422f76aa21e4 (diff)
Renamed to ldap_no_ssl and ldap_ssl
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