2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2018-09-03 20:44:39 +02:00
|
|
|
FactoryBot.define do
|
2017-05-31 18:42:52 +05:30
|
|
|
factory :organization do
|
2018-02-28 09:34:43 -08:00
|
|
|
sequence(:name) { |n| "#{Faker::Company.name} #{n}" }
|
2017-05-31 18:42:52 +05:30
|
|
|
description { Faker::Lorem.paragraph }
|
|
|
|
|
|
|
|
|
|
# after(:create) do |organization|
|
|
|
|
|
# File.open("spec/support/logos/#{1 + rand(13)}.png") do |file|
|
|
|
|
|
# organization.picture = file
|
|
|
|
|
# end
|
|
|
|
|
# organization.save!
|
|
|
|
|
# end
|
|
|
|
|
end
|
|
|
|
|
end
|