diff --git a/spec/factories/case_log.rb b/spec/factories/case_log.rb index e2f132c53..41c92a3b3 100644 --- a/spec/factories/case_log.rb +++ b/spec/factories/case_log.rb @@ -11,6 +11,16 @@ FactoryBot.define do tenant_code { "BZ737" } postcode { "NW1 7TY" } end + trait :near_check_answers_household_characteristics do + status { 0 } + tenant_code { "AB123" } + postcode { "LE11 2DW" } + tenant_age { 25 } + tenant_gender { "Male" } + tenant_ethnic_group { "White: English/Scottish/Welsh/Northern Irish/British" } + tenant_nationality { "UK national resident in UK" } + tenant_economic_status { "Part-time - Less than 30 hours" } + end created_at { Time.zone.now } updated_at { Time.zone.now } end