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.
 
 
 
 

17 lines
370 B

FactoryBot.define do
factory :case_log do
sequence(:id) { |i| i }
trait :in_progress do
status { 0 }
tenant_code { "TH356" }
postcode { "SW2 6HI" }
end
trait :submitted do
status { 1 }
tenant_code { "BZ737" }
postcode { "NW1 7TY" }
end
created_at { Time.zone.now }
updated_at { Time.zone.now }
end
end