chinwagsocial/spec/controllers/admin/pubsubhubbub_controller_spec.rb

18 lines
366 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Admin::PubsubhubbubController, type: :controller do
render_views
describe 'GET #index' do
before do
2016-11-30 01:49:39 +11:00
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