2023-02-22 11:55:31 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-02-19 09:38:14 +11:00
|
|
|
require 'rails_helper'
|
2017-04-13 21:09:07 +10:00
|
|
|
|
2023-02-19 09:38:14 +11:00
|
|
|
describe 'The host_meta route' do
|
|
|
|
describe 'requested without accepts headers' do
|
|
|
|
it 'returns an xml response' do
|
2017-04-13 21:09:07 +10:00
|
|
|
get host_meta_url
|
|
|
|
|
2018-04-22 05:35:07 +10:00
|
|
|
expect(response).to have_http_status(200)
|
2023-02-19 09:38:14 +11:00
|
|
|
expect(response.media_type).to eq 'application/xrd+xml'
|
2017-04-13 21:09:07 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|