forked from treehouse/mastodon
Fix spacing in some FeedManager examples.
parent
26573ad7e6
commit
a40e322f4b
|
@ -175,7 +175,7 @@ RSpec.describe FeedManager do
|
||||||
it 'returns true for a status with a tag that matches a muted keyword' do
|
it 'returns true for a status with a tag that matches a muted keyword' do
|
||||||
Fabricate('Glitch::KeywordMute', account: alice, keyword: 'jorts')
|
Fabricate('Glitch::KeywordMute', account: alice, keyword: 'jorts')
|
||||||
status = Fabricate(:status, account: bob)
|
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
|
expect(FeedManager.instance.filter?(:home, status, alice.id)).to be true
|
||||||
end
|
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
|
it 'returns true for a status with a tag that matches an octothorpe-prefixed muted keyword' do
|
||||||
Fabricate('Glitch::KeywordMute', account: alice, keyword: '#jorts')
|
Fabricate('Glitch::KeywordMute', account: alice, keyword: '#jorts')
|
||||||
status = Fabricate(:status, account: bob)
|
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
|
expect(FeedManager.instance.filter?(:home, status, alice.id)).to be true
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue