0
0
Fork 0

Fix “invited by” not showing up for invited accounts in admin interface (#10791)

This commit is contained in:
ThibG 2019-05-19 21:40:36 +02:00 committed by Eugen Rochko
parent 37a04c329c
commit ae18386558
3 changed files with 7 additions and 3 deletions

View file

@ -8,7 +8,7 @@ RSpec.describe BlacklistedEmailValidator, type: :validator do
let(:errors) { double(add: nil) }
before do
allow(user).to receive(:invited?) { false }
allow(user).to receive(:valid_invitation?) { false }
allow_any_instance_of(described_class).to receive(:blocked_email?) { blocked_email }
described_class.new.validate(user)
end