trabajo-afectivo/spec/lib/cache_spec.rb
2022-01-01 14:38:12 +01:00

15 lines
352 B
Ruby

# 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