glitch-soc/spec/models/concerns/account_interactions_spec.rb

78 lines
1.8 KiB
Ruby
Raw Normal View History

require 'rails_helper'
describe AccountInteractions do
2017-09-13 21:44:38 -04:00
describe 'muting an account' do
before do
@me = Fabricate(:account, username: 'Me')
@you = Fabricate(:account, username: 'You')
end
2017-09-13 21:44:38 -04:00
context 'with the notifications option unspecified' do
before do
@me.mute!(@you)
end
2017-09-13 21:44:38 -04:00
it 'defaults to muting notifications' do
expect(@me.muting_notifications?(@you)).to be(true)
end
end
2017-09-13 21:44:38 -04:00
context 'with the notifications option set to false' do
before do
@me.mute!(@you, notifications: false)
end
2017-09-13 21:44:38 -04:00
it 'does not mute notifications' do
expect(@me.muting_notifications?(@you)).to be(false)
end
end
2017-09-13 21:44:38 -04:00
context 'with the notifications option set to true' do
before do
@me.mute!(@you, notifications: true)
end
2017-09-13 21:44:38 -04:00
it 'does mute notifications' do
expect(@me.muting_notifications?(@you)).to be(true)
end
end
end
describe 'ignoring reblogs from an account' do
before do
@me = Fabricate(:account, username: 'Me')
@you = Fabricate(:account, username: 'You')
end
context 'with the reblogs option unspecified' do
before do
@me.follow!(@you)
end
it 'defaults to showing reblogs' do
expect(@me.muting_reblogs?(@you)).to be(false)
end
end
context 'with the reblogs option set to false' do
before do
@me.follow!(@you, reblogs: false)
end
it 'does mute reblogs' do
expect(@me.muting_reblogs?(@you)).to be(true)
end
end
context 'with the reblogs option set to true' do
before do
@me.follow!(@you, reblogs: true)
end
it 'does not mute reblogs' do
expect(@me.muting_reblogs?(@you)).to be(false)
end
end
end
2017-09-13 21:44:38 -04:00
end