Fix failing keybase-related test

master
Thibaut Girka 2019-03-30 13:32:42 +01:00
parent b9b472d519
commit b72950fbd3
1 changed files with 4 additions and 0 deletions

View File

@ -42,6 +42,8 @@ RSpec.describe ActivityPub::ProcessAccountService, type: :service do
end
it 'parses out of attachment' do
allow(ProofProvider::Keybase::Worker).to receive(:perform_async)
account = subject.call('alice', 'example.com', payload)
expect(account.identity_proofs.count).to eq 1
@ -54,6 +56,8 @@ RSpec.describe ActivityPub::ProcessAccountService, type: :service do
end
it 'removes no longer present proofs' do
allow(ProofProvider::Keybase::Worker).to receive(:perform_async)
account = Fabricate(:account, username: 'alice', domain: 'example.com')
old_proof = Fabricate(:account_identity_proof, account: account, provider: 'keybase', provider_username: 'Bob', token: 'b' * 66)