mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-24 03:23:48 -05:00
specs testing that hide_notifications in mutes actually hides notifications
This commit is contained in:
parent
921a1b7b2a
commit
0ccfbe5747
@ -17,6 +17,16 @@ RSpec.describe NotifyService do
|
|||||||
is_expected.to_not change(Notification, :count)
|
is_expected.to_not change(Notification, :count)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it 'does not notify when sender is muted with hide_notifications' do
|
||||||
|
recipient.mute!(sender, notifications: true)
|
||||||
|
is_expected.to_not change(Notification, :count)
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'does notify when sender is muted without hide_notifications' do
|
||||||
|
recipient.mute!(sender, notifications: false)
|
||||||
|
is_expected.to change(Notification, :count)
|
||||||
|
end
|
||||||
|
|
||||||
it 'does not notify when sender\'s domain is blocked' do
|
it 'does not notify when sender\'s domain is blocked' do
|
||||||
recipient.block_domain!(sender.domain)
|
recipient.block_domain!(sender.domain)
|
||||||
is_expected.to_not change(Notification, :count)
|
is_expected.to_not change(Notification, :count)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user