Add coverage for rule_ids not matching rules

pull/32478/head
Matt Jankowski 2024-10-12 19:30:38 -04:00
parent e8e63fc330
commit ead7583ea3
1 changed files with 6 additions and 0 deletions

View File

@ -170,6 +170,12 @@ RSpec.describe Report do
it { is_expected.to_not allow_value(rule.id).for(:rule_ids) }
end
context 'with extra rule ids on a violation' do
subject { Fabricate.build :report, category: :violation }
it { is_expected.to_not allow_value([nil, Fabricate(:rule).id]).for(:rule_ids) }
end
def comment_over_limit
'a' * described_class::COMMENT_SIZE_LIMIT * 2
end