Commit 9c321464 authored by Sean McGivern's avatar Sean McGivern

Merge branch 'unify-redis_shared_examples.rb' into 'master'

Unify spec/support/redis/redis_shared_examples.rb

See merge request gitlab-org/gitlab-ce!20074
parents d96d205a 056b4779
......@@ -65,6 +65,14 @@ RSpec.shared_examples "redis_shared_examples" do
end
describe '.url' do
it 'withstands mutation' do
url1 = described_class.url
url2 = described_class.url
url1 << 'foobar' unless url1.frozen?
expect(url2).not_to end_with('foobar')
end
context 'when yml file with env variable' do
let(:config_file_name) { config_with_environment_variable_inside }
......@@ -101,7 +109,6 @@ RSpec.shared_examples "redis_shared_examples" do
before do
clear_pool
end
after do
clear_pool
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment