Submit social housing lettings and sales data (CORE)
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.
|
|
|
require "rails_helper"
|
|
|
|
|
|
|
|
RSpec.describe Form::Sales::Subsections::HouseholdCharacteristics, type: :model do
|
|
|
|
subject(:household_characteristics) { described_class.new(subsection_id, subsection_definition, section) }
|
|
|
|
|
|
|
|
let(:subsection_id) { nil }
|
|
|
|
let(:subsection_definition) { nil }
|
|
|
|
let(:section) { instance_double(Form::Sales::Sections::Household) }
|
|
|
|
|
|
|
|
it "has correct section" do
|
|
|
|
expect(household_characteristics.section).to eq(section)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "has correct pages" do
|
|
|
|
expect(household_characteristics.pages.map(&:id)).to eq(
|
|
|
|
%w[buyer_1_age buyer_1_gender_identity],
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "has the correct id" do
|
|
|
|
expect(household_characteristics.id).to eq("household_characteristics")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "has the correct label" do
|
|
|
|
expect(household_characteristics.label).to eq("Household characteristics")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "has correct depends on" do
|
|
|
|
expect(household_characteristics.depends_on).to eq([{ "setup" => "completed" }])
|
|
|
|
end
|
|
|
|
end
|