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.
 
 
 
 

29 lines
778 B

require "rails_helper"
RSpec.describe Form::Lettings::Sections::Household, type: :model do
subject(:household) { described_class.new(section_id, section_definition, form) }
let(:section_id) { nil }
let(:section_definition) { nil }
let(:form) { instance_double(Form) }
it "has correct form" do
expect(household.form).to eq(form)
end
it "has correct subsections" do
expect(household.subsections.map(&:id)).to eq(%w[household_characteristics household_needs household_situation])
end
it "has the correct id" do
expect(household.id).to eq("household")
end
it "has the correct label" do
expect(household.label).to eq("About the household")
end
it "has the correct description" do
expect(household.description).to be_nil
end
end