Skip to content
Snippets Groups Projects
Commit ae3d2f44 authored by ysksn's avatar ysksn Committed by Yamagishi Kazutoshi
Browse files

Add specs for Admin::InvitesController (#9471)

parent 81bda7d6
No related branches found
No related tags found
No related merge requests found
# frozen_string_literal: true
require 'rails_helper'
describe Admin::InvitesController do
......@@ -40,4 +42,18 @@ describe Admin::InvitesController do
expect(invite.reload).to be_expired
end
end
describe 'POST #deactivate_all' do
it 'expires all invites, then redirects to admin_invites_path' do
invites = Fabricate.times(2, :invite, expires_at: nil)
post :deactivate_all
invites.each do |invite|
expect(invite.reload).to be_expired
end
expect(response).to redirect_to admin_invites_path
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment