trabajo-afectivo/spec/factories/organization.rb

20 lines
333 B
Ruby
Raw Normal View History

2018-03-08 12:14:04 +00:00
FactoryBot.define do
sequence :test_organization_name do |n|
"TestOrganization#{n}"
end
end
FactoryBot.define do
factory :organization do
name { generate(:test_organization_name) }
shared true
domain ''
domain_assignment false
active true
note ''
created_by_id 1
updated_by_id 1
end
end