mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
13 lines
332 B
Ruby
13 lines
332 B
Ruby
FactoryGirl.define do
|
|
factory :organization do
|
|
name { Faker::Company.name }
|
|
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
|