2023-02-21 16:55:31 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-30 04:43:34 -07:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe ManifestsController do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
|
|
|
before do
|
2023-04-19 07:07:29 -07:00
|
|
|
get :show
|
2017-06-30 04:43:34 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2018-04-21 12:35:07 -07:00
|
|
|
expect(response).to have_http_status(200)
|
2017-06-30 04:43:34 -07:00
|
|
|
end
|
2023-04-19 07:07:29 -07:00
|
|
|
|
|
|
|
it 'returns public cache control header' do
|
|
|
|
expect(response.headers['Cache-Control']).to include('public')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not set cookies' do
|
|
|
|
expect(response.cookies).to be_empty
|
|
|
|
expect(response.headers['Set-Cookies']).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not set sessions' do
|
|
|
|
expect(session).to be_empty
|
|
|
|
end
|
2017-06-30 04:43:34 -07:00
|
|
|
end
|
|
|
|
end
|