This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-02-18 14:38:14 -08:00
|
|
|
require 'rails_helper'
|
2017-04-13 04:09:07 -07:00
|
|
|
|
2023-02-18 14:38:14 -08:00
|
|
|
describe 'The host_meta route' do
|
|
|
|
describe 'requested without accepts headers' do
|
|
|
|
it 'returns an xml response' do
|
2017-04-13 04:09:07 -07:00
|
|
|
get host_meta_url
|
|
|
|
|
2018-04-21 12:35:07 -07:00
|
|
|
expect(response).to have_http_status(200)
|
2023-02-18 14:38:14 -08:00
|
|
|
expect(response.media_type).to eq 'application/xrd+xml'
|
2017-04-13 04:09:07 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|