catstodon/spec/requests/manifest_spec.rb
Claire 29124990a2 Merge commit '7335a43b6dac0e82c305ce4dec9db4da114c769e' into glitch-soc/merge-upstream
Conflicts:
- `app/helpers/application_helper.rb`:
  Upstream reworked how CSS classes for the document's body are computed.
  Slight conflict due to glitch-soc's different theming system.
  Updated as upstream did.
2024-09-06 19:25:31 +02:00

24 lines
511 B
Ruby

# 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 Glitch Edition'
)
end
end
end