Fix response rates for small schools by accounting for expected minimum counts of responses less than 10

This commit is contained in:
rebuilt 2023-05-12 12:27:00 -07:00
parent b5be86d74d
commit 3c30808a5e
2 changed files with 7 additions and 3 deletions

View file

@ -65,8 +65,9 @@ describe ResponseRateCalculator, type: :model do
context 'there are responses for another survey item but not enough to meet the minimum threshold' do
before do
create_list(:survey_item_response, 9, survey_item: insufficient_student_survey_item_1, academic_year:,
school:, grade: 1)
less_than_a_quarter_of_respondents_for_first_grade = 4
create_list(:survey_item_response, less_than_a_quarter_of_respondents_for_first_grade, survey_item: insufficient_student_survey_item_1, academic_year:,
school:, grade: 1)
end
it 'returns an average of the response rates for all grades' do
expect(StudentResponseRateCalculator.new(subcategory:, school:, academic_year:).rate).to eq 50