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