From: abcang Date: Tue, 20 Feb 2018 15:50:12 +0000 (+0900) Subject: Improve performance of feed_manager_spec (#6517) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=712488127380dbdd5bde2783d98f0e9793f4d97b;p=mastodon.git Improve performance of feed_manager_spec (#6517) --- diff --git a/spec/lib/feed_manager_spec.rb b/spec/lib/feed_manager_spec.rb index f2103a4b1..c6bc388e0 100644 --- a/spec/lib/feed_manager_spec.rb +++ b/spec/lib/feed_manager_spec.rb @@ -1,7 +1,14 @@ require 'rails_helper' RSpec.describe FeedManager do - it 'tracks at least as many statuses as reblogs' do + before do |example| + unless example.metadata[:skip_stub] + stub_const 'FeedManager::MAX_ITEMS', 10 + stub_const 'FeedManager::REBLOG_FALLOFF', 4 + end + end + + it 'tracks at least as many statuses as reblogs', skip_stub: true do expect(FeedManager::REBLOG_FALLOFF).to be <= FeedManager::MAX_ITEMS end