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

RSpec.describe DomainPolicyController, type: :controller do

  describe "GET #show" do
    it "returns http success" do
      get :show
      expect(response).to have_http_status(:success)
    end
  end

end