You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
734 B
27 lines
734 B
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
|
|
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(body_as_json[: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
|
|
|