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