You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
612 B
19 lines
612 B
3 years ago
|
require "rails_helper"
|
||
|
|
||
|
RSpec.describe CheckAnswersHelper do
|
||
|
describe "Get answered questions total" do
|
||
|
let!(:case_log) { FactoryBot.create(:case_log) }
|
||
|
@form = Form.new(2021, 2022)
|
||
|
subsection_pages = @form.pages_for_subsection("income_and_benefits")
|
||
|
|
||
|
it "returns 0 if no questions are answered" do
|
||
|
expect(get_answered_questions_total(subsection_pages, case_log)).to equal(0)
|
||
|
end
|
||
|
|
||
|
it "returns 0 if only 1 question on a page gets answered" do
|
||
|
case_log["net_income"] = "123"
|
||
|
expect(get_answered_questions_total(subsection_pages, case_log)).to equal(0)
|
||
|
end
|
||
|
end
|
||
|
end
|