You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
328 B
14 lines
328 B
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
|
|
describe 'The host_meta route' do |
|
describe 'requested without accepts headers' do |
|
it 'returns an xml response' do |
|
get host_meta_url |
|
|
|
expect(response).to have_http_status(200) |
|
expect(response.media_type).to eq 'application/xrd+xml' |
|
end |
|
end |
|
end
|
|
|