Files
openfoodnetwork/spec/factories/enterprise_factory.rb
Luis Ramos 8a9dae0ee2 Run rubocop autocorrect
This is the result of bundle exec rubocop --auto-correct
2020-06-22 12:23:10 +01:00

50 lines
1.3 KiB
Ruby

FactoryBot.define do
factory :enterprise, class: Enterprise do
transient do
users []
logo {}
promo_image {}
end
owner { FactoryBot.create :user }
sequence(:name) { |n| "Enterprise #{n}" }
sells 'any'
description 'enterprise'
long_description '<p>Hello, world!</p><p>This is a paragraph.</p>'
address { FactoryBot.create(:address) }
after(:create) do |enterprise, proxy|
proxy.users.each do |user|
enterprise.users << user unless enterprise.users.include?(user)
end
enterprise.update logo: proxy.logo, promo_image: proxy.promo_image
end
end
factory :supplier_enterprise, parent: :enterprise do
is_primary_producer true
sells "none"
end
factory :distributor_enterprise, parent: :enterprise do
is_primary_producer false
sells "any"
transient do
with_payment_and_shipping false
end
after(:create) do |enterprise, proxy|
if proxy.with_payment_and_shipping
create(:payment_method, distributors: [enterprise])
create(:shipping_method, distributors: [enterprise])
end
end
end
factory :distributor_enterprise_with_tax, parent: :distributor_enterprise do
charges_sales_tax { true }
allow_order_changes { true }
end
end