Rename FollowRemoteAccountService to ResolveRemoteAccountService (#3847)
Rename Activitypub to ActivityPub
This commit is contained in:
parent
aebebdc5d1
commit
f3be605286
20 changed files with 25 additions and 24 deletions
|
@ -123,7 +123,7 @@ describe AccountSearchService do
|
|||
describe 'when there is a domain but no exact match' do
|
||||
it 'follows the remote account when resolve is true' do
|
||||
service = double(call: nil)
|
||||
allow(FollowRemoteAccountService).to receive(:new).and_return(service)
|
||||
allow(ResolveRemoteAccountService).to receive(:new).and_return(service)
|
||||
|
||||
results = subject.call('newuser@remote.com', 10, true)
|
||||
expect(service).to have_received(:call).with('newuser@remote.com')
|
||||
|
@ -131,7 +131,7 @@ describe AccountSearchService do
|
|||
|
||||
it 'does not follow the remote account when resolve is false' do
|
||||
service = double(call: nil)
|
||||
allow(FollowRemoteAccountService).to receive(:new).and_return(service)
|
||||
allow(ResolveRemoteAccountService).to receive(:new).and_return(service)
|
||||
|
||||
results = subject.call('newuser@remote.com', 10, false)
|
||||
expect(service).not_to have_received(:call)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue