2017-04-13 12:09:07 +01:00
|
|
|
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
|
|
|
|
|
2018-04-21 20:35:07 +01:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-13 12:09:07 +01:00
|
|
|
expect(response.content_type).to eq "application/xrd+xml"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|