blob: 0c51b5f4843d86018c881ef69f7b92422db97dbe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
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(:success)
expect(response.content_type).to eq "application/xrd+xml"
end
end
end
|