diff --git a/spec/models/report_spec.rb b/spec/models/report_spec.rb index ece0a4bfac..97ed01e8c0 100644 --- a/spec/models/report_spec.rb +++ b/spec/models/report_spec.rb @@ -120,6 +120,28 @@ RSpec.describe Report do end end + describe '#unresolved_siblings?' do + subject { Fabricate :report } + + context 'when the target account has other unresolved reports' do + before { Fabricate :report, action_taken_at: nil, target_account: subject.target_account } + + it { is_expected.to be_unresolved_siblings } + end + + context 'when the target account has a resolved report' do + before { Fabricate :report, action_taken_at: 3.days.ago, target_account: subject.target_account } + + it { is_expected.to_not be_unresolved_siblings } + end + + context 'when the target account has no other reports' do + before { described_class.where(target_account: subject.target_account).destroy_all } + + it { is_expected.to_not be_unresolved_siblings } + end + end + describe 'validations' do subject { Fabricate.build :report }