123456789101112131415 |
- # Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
- require 'rails_helper'
- RSpec.describe Cache do
- describe '.get' do
- before { allow(Rails.cache).to receive(:read) }
- it 'alias of Rails.cache.read' do
- described_class.read('foo')
- expect(Rails.cache).to have_received(:read).with('foo')
- end
- end
- end
|