mastodon/spec/requests/link_headers_spec.rb

18 lines
591 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Link headers' do
describe 'on the account show page' do
let(:account) { Fabricate(:account, username: 'test') }
it 'contains webfinger and activitypub urls in link header' do
get short_account_path(username: account)
expect(response)
.to have_http_link_header(webfinger_url(resource: account.to_webfinger_s)).for(rel: 'lrdd', type: 'application/jrd+json')
.and have_http_link_header(account_url(account)).for(rel: 'alternate', type: 'application/activity+json')
end
end
end