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