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.

18 lines
370 B

3 years ago
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 }
3 years ago
end
end