Add `change` block expectation to `admin/invites#deactivate_all` spec (#29412)

This commit is contained in:
Matt Jankowski 2024-02-27 11:25:58 -05:00 committed by GitHub
parent ea8e7f3e9d
commit 8f3c91fc3c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 7 deletions

View File

@ -44,14 +44,13 @@ describe Admin::InvitesController do
end
describe 'POST #deactivate_all' do
before { Fabricate(:invite, expires_at: nil) }
it 'expires all invites, then redirects to admin_invites_path' do
invites = Fabricate.times(1, :invite, expires_at: nil)
post :deactivate_all
invites.each do |invite|
expect(invite.reload).to be_expired
end
expect { post :deactivate_all }
.to change { Invite.exists?(expires_at: nil) }
.from(true)
.to(false)
expect(response).to redirect_to admin_invites_path
end