1234567891011121314151617181920212223 |
- # frozen_string_literal: true
- require 'rails_helper'
- RSpec.describe 'Manifest' do
- describe 'GET /manifest' do
- before { get '/manifest' }
- it 'returns http success' do
- expect(response)
- .to have_http_status(200)
- .and have_cacheable_headers
- .and have_attributes(
- content_type: match('application/json')
- )
- expect(response.parsed_body)
- .to include(
- id: '/home',
- name: 'Mastodon'
- )
- end
- end
- end
|