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.

24 lines
547 B

FactoryBot.define do
factory :user do
sequence(:email) { |i| "test#{i}@example.com" }
name { "Danny Rojas" }
password { "pAssword1" }
organisation
3 years ago
role { "data_provider" }
old_user_id { 2 }
trait :data_coordinator do
role { "data_coordinator" }
end
trait :data_protection_officer do
is_dpo { true }
end
trait :support do
role { "support" }
end
sign_in_count { 5 }
confirmed_at { Time.zone.now }
created_at { Time.zone.now }
updated_at { Time.zone.now }
end
end