spec/unit/middlewares/cache_spec.rb in locomotivecms_steam-1.6.0 vs spec/unit/middlewares/cache_spec.rb in locomotivecms_steam-1.6.1

- old
+ new

@@ -53,25 +53,25 @@ context 'the request is a GET' do let(:response) { nil } - before { expect(cache).to receive(:read).with('c34181a7a079edc9de373067bffc28f0').and_return(response) } + before { expect(cache).to receive(:read).with('4fb84e6d3037dcd54979c3461c5a5ffd').and_return(response) } context 'the cache is empty' do - before { expect(cache).to receive(:write).with('c34181a7a079edc9de373067bffc28f0', Marshal.dump([200, {}, ["Hello world!"]])) } + before { expect(cache).to receive(:write).with('4fb84e6d3037dcd54979c3461c5a5ffd', Marshal.dump([200, {}, ["Hello world!"]])) } it 'tells the CDN to cache the page and also cache it internally' do is_expected.to eq ['max-age=0, s-maxage=3600, public, must-revalidate', 'Accept-Language'] end describe 'ETag' do subject { send_request[:env]['steam.cache_etag'] } - it { is_expected.to eq 'c34181a7a079edc9de373067bffc28f0' } + it { is_expected.to eq '4fb84e6d3037dcd54979c3461c5a5ffd' } end describe 'the site administrator sets a custom cache control and vary' do @@ -102,10 +102,10 @@ subject { [send_request[:code], send_request[:headers]] } context 'based on the ETag' do - let(:etag) { 'c34181a7a079edc9de373067bffc28f0' } + let(:etag) { '4fb84e6d3037dcd54979c3461c5a5ffd' } it 'returns a 304 (Not modified) without no cache headers' do expect(subject.first).to eq 304 expect(subject.last['Cache-Control']).to eq nil end