1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-22 02:23:48 -05:00

24 lines
494 B
Ruby
Raw Normal View History

2023-03-04 11:13:28 -05:00
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Admin::Webhooks::SecretsController do
2023-03-04 11:13:28 -05:00
render_views
let(:user) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
before do
sign_in user, scope: :user
end
describe 'POST #rotate' do
let(:webhook) { Fabricate(:webhook) }
it 'returns http success' do
post :rotate, params: { webhook_id: webhook.id }
expect(response).to redirect_to(admin_webhook_path(webhook))
end
end
end