mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
fix tests
This commit is contained in:
parent
700dfac4cb
commit
1d494abc6f
1 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ describe FeedInsertWorker do
|
||||||
|
|
||||||
context 'when there are real records' do
|
context 'when there are real records' do
|
||||||
it 'skips the push when there is a filter' do
|
it 'skips the push when there is a filter' do
|
||||||
instance = instance_double(FeedManager, push_to_home: nil, filter?: true)
|
instance = instance_double(FeedManager, push_to_home: nil, filter?: true, filter_notification?: true)
|
||||||
allow(FeedManager).to receive(:instance).and_return(instance)
|
allow(FeedManager).to receive(:instance).and_return(instance)
|
||||||
result = subject.perform(status.id, follower.id)
|
result = subject.perform(status.id, follower.id)
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ describe FeedInsertWorker do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'pushes the status onto the home timeline without filter' do
|
it 'pushes the status onto the home timeline without filter' do
|
||||||
instance = instance_double(FeedManager, push_to_home: nil, filter?: false)
|
instance = instance_double(FeedManager, push_to_home: nil, filter?: false, filter_notification?: false)
|
||||||
allow(FeedManager).to receive(:instance).and_return(instance)
|
allow(FeedManager).to receive(:instance).and_return(instance)
|
||||||
result = subject.perform(status.id, follower.id, :home)
|
result = subject.perform(status.id, follower.id, :home)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue