|
|
|
require "rails_helper"
|
|
|
|
require_relative "helpers"
|
|
|
|
|
|
|
|
RSpec.describe "Task List" do
|
|
|
|
include Helpers
|
|
|
|
let(:user) { FactoryBot.create(:user) }
|
|
|
|
let(:case_log) do
|
|
|
|
FactoryBot.create(
|
|
|
|
:case_log,
|
|
|
|
:in_progress,
|
|
|
|
owning_organisation: user.organisation,
|
|
|
|
managing_organisation: user.organisation,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
let(:empty_case_log) do
|
|
|
|
FactoryBot.create(
|
|
|
|
:case_log,
|
|
|
|
owning_organisation: user.organisation,
|
|
|
|
managing_organisation: user.organisation,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
let(:id) { case_log.id }
|
|
|
|
let(:status) { case_log.status }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in user
|
|
|
|
end
|
|
|
|
|
|
|
|
it "skips to the first section if no answers are completed" do
|
|
|
|
visit("/logs/#{empty_case_log.id}")
|
|
|
|
expect(page).to have_link("Skip to next incomplete section", href: /#household_characteristics/)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "shows the number of completed sections if no sections are completed" do
|
|
|
|
visit("/logs/#{empty_case_log.id}")
|
|
|
|
expect(page).to have_content("You have completed 0 of 9 sections.")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "shows the number of completed sections if one section is completed" do
|
|
|
|
answer_all_questions_in_income_subsection(empty_case_log)
|
|
|
|
visit("/logs/#{empty_case_log.id}")
|
|
|
|
expect(page).to have_content("You have completed 1 of 9 sections.")
|
|
|
|
end
|
|
|
|
end
|