|
|
@ -22,6 +22,7 @@ RSpec.describe Form::Lettings::Questions::PreviousTenure, type: :model do |
|
|
|
expect(question.derived?(nil)).to be false |
|
|
|
expect(question.derived?(nil)).to be false |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
context "with start year before 2025" do |
|
|
|
it "has the correct answer_options" do |
|
|
|
it "has the correct answer_options" do |
|
|
|
expect(question.answer_options).to eq({ |
|
|
|
expect(question.answer_options).to eq({ |
|
|
|
"30" => { "value" => "Fixed-term local authority general needs tenancy" }, |
|
|
|
"30" => { "value" => "Fixed-term local authority general needs tenancy" }, |
|
|
@ -52,6 +53,7 @@ RSpec.describe Form::Lettings::Questions::PreviousTenure, type: :model do |
|
|
|
"25" => { "value" => "Any other accommodation" }, |
|
|
|
"25" => { "value" => "Any other accommodation" }, |
|
|
|
}) |
|
|
|
}) |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
context "with 2025 logs" do |
|
|
|
context "with 2025 logs" do |
|
|
|
let(:form) { instance_double(Form, start_date: Time.zone.local(2025, 4, 1), start_year_2025_or_later?: true) } |
|
|
|
let(:form) { instance_double(Form, start_date: Time.zone.local(2025, 4, 1), start_year_2025_or_later?: true) } |
|
|
@ -62,14 +64,14 @@ RSpec.describe Form::Lettings::Questions::PreviousTenure, type: :model do |
|
|
|
"32" => { "value" => "Fixed-term private registered provider (PRP) general needs tenancy" }, |
|
|
|
"32" => { "value" => "Fixed-term private registered provider (PRP) general needs tenancy" }, |
|
|
|
"31" => { "value" => "Lifetime local authority general needs tenancy" }, |
|
|
|
"31" => { "value" => "Lifetime local authority general needs tenancy" }, |
|
|
|
"33" => { "value" => "Lifetime private registered provider (PRP) general needs tenancy" }, |
|
|
|
"33" => { "value" => "Lifetime private registered provider (PRP) general needs tenancy" }, |
|
|
|
"34" => { "value" => "Specialist retirement housing" }, |
|
|
|
|
|
|
|
"35" => { "value" => "Extra care housing" }, |
|
|
|
"35" => { "value" => "Extra care housing" }, |
|
|
|
|
|
|
|
"38" => { "value" => "Older people’s housing for tenants with low support needs" }, |
|
|
|
"6" => { "value" => "Other supported housing" }, |
|
|
|
"6" => { "value" => "Other supported housing" }, |
|
|
|
"3" => { "value" => "Private sector tenancy" }, |
|
|
|
"3" => { "value" => "Private sector tenancy" }, |
|
|
|
"27" => { "value" => "Owner occupation (low-cost home ownership)" }, |
|
|
|
"27" => { "value" => "Owner occupation (low-cost home ownership)" }, |
|
|
|
"26" => { "value" => "Owner occupation (private)" }, |
|
|
|
"26" => { "value" => "Owner occupation (private)" }, |
|
|
|
"28" => { "value" => "Living with friends and family (long-term)" }, |
|
|
|
"28" => { "value" => "Living with friends and family (long-term)" }, |
|
|
|
"38" => { "value" => "Sofa surfing (moving regularly between family and friends, no permanent bed)" }, |
|
|
|
"39" => { "value" => "Sofa surfing (moving regularly between family and friends, no permanent bed)" }, |
|
|
|
"14" => { "value" => "Bed and breakfast" }, |
|
|
|
"14" => { "value" => "Bed and breakfast" }, |
|
|
|
"7" => { "value" => "Direct access hostel" }, |
|
|
|
"7" => { "value" => "Direct access hostel" }, |
|
|
|
"10" => { "value" => "Hospital" }, |
|
|
|
"10" => { "value" => "Hospital" }, |
|
|
@ -82,7 +84,6 @@ RSpec.describe Form::Lettings::Questions::PreviousTenure, type: :model do |
|
|
|
"21" => { "value" => "Refuge" }, |
|
|
|
"21" => { "value" => "Refuge" }, |
|
|
|
"9" => { "value" => "Residential care home" }, |
|
|
|
"9" => { "value" => "Residential care home" }, |
|
|
|
"4" => { "value" => "Tied housing or rented with job" }, |
|
|
|
"4" => { "value" => "Tied housing or rented with job" }, |
|
|
|
"36" => { "value" => "Sheltered housing for adults aged under 55 years" }, |
|
|
|
|
|
|
|
"37" => { "value" => "Host family or similar refugee accommodation" }, |
|
|
|
"37" => { "value" => "Host family or similar refugee accommodation" }, |
|
|
|
"25" => { "value" => "Any other accommodation" }, |
|
|
|
"25" => { "value" => "Any other accommodation" }, |
|
|
|
}) |
|
|
|
}) |
|
|
|