0
0
Fork 0

Add role-specific user fabricators (#33437)

This commit is contained in:
Matt Jankowski 2025-01-03 03:28:14 -05:00 committed by GitHub
parent a8a16695f1
commit 7cbdcd7b3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
105 changed files with 125 additions and 113 deletions

View file

@ -9,8 +9,8 @@ RSpec.describe Scheduler::AutoCloseRegistrationsScheduler do
let(:moderator_activity_date) { Time.now.utc }
before do
Fabricate(:user, role: UserRole.find_by(name: 'Owner'), current_sign_in_at: 10.years.ago)
Fabricate(:user, role: UserRole.find_by(name: 'Moderator'), current_sign_in_at: moderator_activity_date)
Fabricate(:owner_user, current_sign_in_at: 10.years.ago)
Fabricate(:moderator_user, current_sign_in_at: moderator_activity_date)
end
context 'when registrations are open' do