# frozen_string_literal: true require 'rails_helper' RSpec.describe 'invites' do let(:invite) { Fabricate(:invite) } context 'when requesting a JSON document' do it 'returns a JSON document with expected attributes' do get "/invite/#{invite.code}", headers: { 'Accept' => 'application/activity+json' } expect(response).to have_http_status(200) expect(response.media_type).to eq 'application/json' expect(response.parsed_body[:invite_code]).to eq invite.code end end context 'when not requesting a JSON document' do it 'returns an HTML page' do get "/invite/#{invite.code}" expect(response).to have_http_status(200) expect(response.media_type).to eq 'text/html' end end end