mirror of
https://github.com/mastodon/mastodon.git
synced 2025-07-12 23:43:23 +00:00
18 lines
591 B
Ruby
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
|