about summary refs log tree commit diff
path: root/spec/controllers/well_known/host_meta_controller_spec.rb
blob: 8a040021a6e9f4074cb70453f3b9a5e2e1147d67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'rails_helper'

describe WellKnown::HostMetaController, type: :controller do
  render_views

  describe 'GET #show' do
    it 'returns http success' do
      get :show, format: :xml

      expect(response).to have_http_status(:success)
    end
  end
end