spec/unit/middlewares/cache_spec.rb in locomotivecms_steam-1.8.0.alpha1 vs spec/unit/middlewares/cache_spec.rb in locomotivecms_steam-1.8.0.alpha2

- old
+ new

@@ -53,25 +53,25 @@ context 'the request is a GET' do let(:response) { nil } - before { expect(cache).to receive(:read).with('7f3fe1e49370f63970331ec3194d4590').and_return(response) } + before { expect(cache).to receive(:read).with('f5f2eb8af560507da49fbe5df8220030').and_return(response) } context 'the cache is empty' do - before { expect(cache).to receive(:write).with('7f3fe1e49370f63970331ec3194d4590', Marshal.dump([200, {}, ["Hello world!"]])) } + before { expect(cache).to receive(:write).with('f5f2eb8af560507da49fbe5df8220030', 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 '7f3fe1e49370f63970331ec3194d4590' } + it { is_expected.to eq 'f5f2eb8af560507da49fbe5df8220030' } 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) { '7f3fe1e49370f63970331ec3194d4590' } + let(:etag) { 'f5f2eb8af560507da49fbe5df8220030' } 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