You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
460 B
14 lines
460 B
# frozen_string_literal: true |
|
|
|
shared_examples 'cacheable response' do |expects_vary: false| |
|
it 'sets correct cache and vary headers and does not set cookies or session' do |
|
expect(response.cookies).to be_empty |
|
expect(response.headers['Set-Cookies']).to be_nil |
|
|
|
expect(session).to be_empty |
|
|
|
expect(response.headers['Vary']).to include(expects_vary) if expects_vary |
|
|
|
expect(response.headers['Cache-Control']).to include('public') |
|
end |
|
end
|
|
|