chinwagsocial/spec/services/precompute_feed_service_spec.rb

23 lines
689 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-03-19 22:13:47 +11:00
require 'rails_helper'
RSpec.describe PrecomputeFeedService do
subject { PrecomputeFeedService.new }
describe 'call' do
let(:account) { Fabricate(:account) }
it 'fills a user timeline with statuses' 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)
subject.call(account)
end
end
2016-03-19 22:13:47 +11:00
end