24 lines
		
	
	
		
			488 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			488 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(body_as_json)
 | 
						|
        .to include(
 | 
						|
          id: '/home',
 | 
						|
          name: 'Mastodon'
 | 
						|
        )
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |