This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-04-13 13:09:07 +02: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 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-13 13:09:07 +02:00
|
|
|
expect(response.content_type).to eq "application/xrd+xml"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|