|
|
|
@ -3,16 +3,15 @@ require "rails_helper"
|
|
|
|
|
RSpec.describe Form::Sales::Subsections::HouseholdSituation, type: :model do |
|
|
|
|
subject(:household_characteristics) { described_class.new(nil, nil, section) } |
|
|
|
|
|
|
|
|
|
let(:start_date) { Time.utc(2023, 4, 1) } |
|
|
|
|
let(:form) { instance_double(Form, start_date:) } |
|
|
|
|
let(:form) { instance_double(Form, start_year_2024_or_later?: true, start_year_2025_or_later?: false) } |
|
|
|
|
let(:section) { instance_double(Form::Sales::Sections::Household, form:) } |
|
|
|
|
|
|
|
|
|
it "has correct section" do |
|
|
|
|
expect(household_characteristics.section).to eq(section) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
context "when the log belongs to the 22/23 collection" do |
|
|
|
|
let(:start_date) { Time.utc(2022, 4, 1) } |
|
|
|
|
context "when the start year is 2024" do |
|
|
|
|
let(:form) { instance_double(Form, start_year_2024_or_later?: true, start_year_2025_or_later?: false) } |
|
|
|
|
|
|
|
|
|
it "has correct pages" do |
|
|
|
|
expect(household_characteristics.pages.map(&:id)).to eq( |
|
|
|
@ -21,19 +20,22 @@ RSpec.describe Form::Sales::Subsections::HouseholdSituation, type: :model do
|
|
|
|
|
last_accommodation |
|
|
|
|
last_accommodation_la |
|
|
|
|
buyers_organisations |
|
|
|
|
buyer_2_living_in |
|
|
|
|
buyer_2_previous_housing_situation |
|
|
|
|
], |
|
|
|
|
) |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
context "when the log belongs to the 23/24 collection" do |
|
|
|
|
context "when the start year is 2025" do |
|
|
|
|
let(:form) { instance_double(Form, start_year_2024_or_later?: true, start_year_2025_or_later?: true) } |
|
|
|
|
|
|
|
|
|
it "has correct pages" do |
|
|
|
|
expect(household_characteristics.pages.map(&:id)).to eq( |
|
|
|
|
%w[ |
|
|
|
|
buyer1_previous_tenure |
|
|
|
|
last_accommodation |
|
|
|
|
last_accommodation_la |
|
|
|
|
buyers_organisations |
|
|
|
|
buyer_2_living_in |
|
|
|
|
buyer_2_previous_housing_situation |
|
|
|
|
], |
|
|
|
|