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
385 B

FactoryBot.define do
factory :organisation_name_change do
association :organisation
name { "#{Faker::Name.name} Housing Org" }
immediate_change { true }
startdate { Time.zone.tomorrow }
trait :future_change do
immediate_change { false }
startdate { 5.days.from_now }
end
trait :merge_change do
change_type { :merge }
end
end
end