|
|
|
@ -175,7 +175,7 @@ RSpec.describe FeedManager do |
|
|
|
|
it 'returns true for a status with a tag that matches a muted keyword' do |
|
|
|
|
Fabricate('Glitch::KeywordMute', account: alice, keyword: 'jorts') |
|
|
|
|
status = Fabricate(:status, account: bob) |
|
|
|
|
status.tags << Fabricate(:tag, name: 'jorts') |
|
|
|
|
status.tags << Fabricate(:tag, name: 'jorts') |
|
|
|
|
|
|
|
|
|
expect(FeedManager.instance.filter?(:home, status, alice.id)).to be true |
|
|
|
|
end |
|
|
|
@ -183,7 +183,7 @@ RSpec.describe FeedManager do |
|
|
|
|
it 'returns true for a status with a tag that matches an octothorpe-prefixed muted keyword' do |
|
|
|
|
Fabricate('Glitch::KeywordMute', account: alice, keyword: '#jorts') |
|
|
|
|
status = Fabricate(:status, account: bob) |
|
|
|
|
status.tags << Fabricate(:tag, name: 'jorts') |
|
|
|
|
status.tags << Fabricate(:tag, name: 'jorts') |
|
|
|
|
|
|
|
|
|
expect(FeedManager.instance.filter?(:home, status, alice.id)).to be true |
|
|
|
|
end |
|
|
|
|