Merge branch 'bw-fix-key-count-service-spec' into 'master'

small change to make less conflict with EE version

See merge request gitlab-org/gitlab-ce!15809
This commit is contained in:
Nick Thomas 2017-12-11 16:45:07 +00:00
commit bd8b651885
1 changed files with 4 additions and 6 deletions

View File

@ -15,14 +15,12 @@ describe Users::KeysCountService, :use_clean_rails_memory_store_caching do
expect(service.count).to eq(1)
end
it 'caches the number of keys in Redis' do
it 'caches the number of keys in Redis', :request_store do
service.delete_cache
control_count = ActiveRecord::QueryRecorder.new { service.count }.count
service.delete_cache
recorder = ActiveRecord::QueryRecorder.new do
2.times { service.count }
end
expect(recorder.count).to eq(1)
expect { 2.times { service.count } }.not_to exceed_query_limit(control_count)
end
end