2024-08-26 16:37:23 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 07:12:25 +02:00
|
|
|
RSpec.describe 'Manifest' do
|
2024-08-26 16:37:23 +02:00
|
|
|
describe 'GET /manifest' do
|
|
|
|
before { get '/manifest' }
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
2024-09-03 17:35:19 +02:00
|
|
|
.and have_cacheable_headers
|
2024-08-26 16:37:23 +02:00
|
|
|
.and have_attributes(
|
|
|
|
content_type: match('application/json')
|
|
|
|
)
|
2024-09-06 11:58:46 +02:00
|
|
|
expect(response.parsed_body)
|
2024-08-26 16:37:23 +02:00
|
|
|
.to include(
|
|
|
|
id: '/home',
|
|
|
|
name: 'Mastodon'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|