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.
16 lines
492 B
16 lines
492 B
2 years ago
|
FactoryBot.define do
|
||
|
factory :data_sharing_agreement do
|
||
|
organisation
|
||
|
data_protection_officer { create(:user, is_dpo: true) }
|
||
|
signed_at { Time.zone.now }
|
||
|
created_at { Time.zone.now }
|
||
|
updated_at { Time.zone.now }
|
||
|
|
||
|
dpo_name { data_protection_officer.name }
|
||
|
dpo_email { data_protection_officer.email }
|
||
|
organisation_address { organisation.address_string }
|
||
|
organisation_phone_number { organisation.phone }
|
||
|
organisation_name { organisation.name }
|
||
|
end
|
||
|
end
|