about summary refs log tree commit diff
path: root/spec/controllers/admin/pubsubhubbub_controller_spec.rb
blob: 4e8016b70005fcec787973452764b5b3ab2cf3ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true
require 'rails_helper'

RSpec.describe Admin::PubsubhubbubController, type: :controller do
  describe 'GET #index' do
    before do
      sign_in :user, Fabricate(:user, admin: true)
    end

    it 'returns http success' do
      get :index
      expect(response).to have_http_status(:success)
    end
  end
end