Added FactoryBot Organization factory.

This commit is contained in:
Thorsten Eckel 2018-03-08 13:14:04 +01:00
parent 0f884b5342
commit d00f82b63a

View file

@ -0,0 +1,19 @@
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