diff options
author | masarakki <masaki182@gmail.com> | 2018-08-22 20:20:50 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-08-22 13:20:50 +0200 |
commit | 4bdab203ac5ca06d757d08af8a2bc184c86e3bbe (patch) | |
tree | 603f68588f5912db3956edb7fafefb608d33fed4 /spec/models | |
parent | 2374a00c1062a70e9092d88579e1351e4c8128f9 (diff) |
exclude-other-silenced-accounts (#7528)
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/status_spec.rb | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/models/status_spec.rb b/spec/models/status_spec.rb index d03005107..9d8670129 100644 --- a/spec/models/status_spec.rb +++ b/spec/models/status_spec.rb @@ -573,17 +573,6 @@ RSpec.describe Status, type: :model do expect(results).to include(es_status) end end - - context 'where that account is silenced' do - it 'includes statuses from other accounts that are silenced' do - @account.update(silenced: true) - other_silenced_account = Fabricate(:account, silenced: true) - other_status = Fabricate(:status, account: other_silenced_account) - - results = Status.as_public_timeline(@account) - expect(results).to include(other_status) - end - end end end |