diff options
author | aschmitz <aschmitz@lardbucket.org> | 2017-11-11 22:10:49 -0600 |
---|---|---|
committer | aschmitz <aschmitz@lardbucket.org> | 2017-11-11 22:10:49 -0600 |
commit | 9a42f7cbed28ca010eca6cef89298ab806ce298f (patch) | |
tree | 49c0ce1ec20b1ce7c16339047cb62b3e5bdf8105 /spec/lib | |
parent | 48c705bbadd8dfba83030f304154c822d98a7da7 (diff) |
Actually filter blocked reblogs from feed
And even a relevant test. Whoops.
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/feed_manager_spec.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/lib/feed_manager_spec.rb b/spec/lib/feed_manager_spec.rb index e678d3ca4..715d85306 100644 --- a/spec/lib/feed_manager_spec.rb +++ b/spec/lib/feed_manager_spec.rb @@ -56,6 +56,13 @@ RSpec.describe FeedManager do expect(FeedManager.instance.filter?(:home, reblog, bob.id)).to be true end + it 'returns true for reblog from account with reblogs disabled' do + status = Fabricate(:status, text: 'Hello world', account: jeff) + reblog = Fabricate(:status, reblog: status, account: alice) + bob.follow!(alice, reblogs: false) + expect(FeedManager.instance.filter?(:home, reblog, bob.id)).to be true + end + it 'returns false for reply by followee to another followee' do status = Fabricate(:status, text: 'Hello world', account: jeff) reply = Fabricate(:status, text: 'Nay', thread: status, account: alice) |