1
0
mirror of https://github.com/mastodon/mastodon synced 2024-12-01 16:28:19 +09:00
mastodon/spec/controllers/admin/pubsubhubbub_controller_spec.rb
2016-11-29 15:49:39 +01:00

16 lines
350 B
Ruby

# 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