about summary refs log tree commit diff
path: root/spec/controllers/admin/pubsubhubbub_controller_spec.rb
blob: 068bd09a660d36058f4b259ffc3058aa3b52f2ee (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 Fabricate(:user, admin: true), scope: :user
    end

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