Bring changes from EE

This commit is contained in:
Lin Jen-Shin 2018-06-21 23:49:15 +08:00
parent e446e8712c
commit 056b47790a
1 changed files with 8 additions and 1 deletions

View File

@ -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