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
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)