diff options
author | Sanad Liaquat <sliaquat@gitlab.com> | 2018-10-24 17:43:30 +0500 |
---|---|---|
committer | Sanad Liaquat <sliaquat@gitlab.com> | 2018-10-24 17:43:30 +0500 |
commit | 7983c798af6f2f01748b67ea3cdbc2dec2554604 (patch) | |
tree | dc8e178bc983b39324bf58802f09c806c8c4543a /qa/spec | |
parent | 38a6ecbe3ef69273dd05d79947c5422f76aa21e4 (diff) | |
download | gitlab-ce-7983c798af6f2f01748b67ea3cdbc2dec2554604.tar.gz |
Renamed to ldap_no_ssl and ldap_ssl
Diffstat (limited to 'qa/spec')
-rw-r--r-- | qa/spec/scenario/test/integration/ldap_spec.rb | 12 |
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 |