Overwrite old statuses with reblogs in PrecomputeFeedService (#3984)
This commit is contained in:
committed by
Eugen Rochko
parent
fb421a1f46
commit
7d8e3721ae
@ -11,12 +11,12 @@ RSpec.describe PrecomputeFeedService do
|
||||
account = Fabricate(:account)
|
||||
followed_account = Fabricate(:account)
|
||||
Fabricate(:follow, account: account, target_account: followed_account)
|
||||
status = Fabricate(:status, account: followed_account)
|
||||
|
||||
expected_redis_args = FeedManager.instance.key(:home, account.id), status.id, status.id
|
||||
expect_any_instance_of(Redis).to receive(:zadd).with(*expected_redis_args)
|
||||
reblog = Fabricate(:status, account: followed_account)
|
||||
status = Fabricate(:status, account: account, reblog: reblog)
|
||||
|
||||
subject.call(account)
|
||||
|
||||
expect(Redis.current.zscore(FeedManager.instance.key(:home, account.id), reblog.id)).to eq status.id
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user