Adopt Rails 5 belongs_to_required_by_default

This commit is contained in:
Patrick Gansterer 2020-08-01 02:49:15 +02:00
parent 2557645f4f
commit 44a198c7bc
23 changed files with 53 additions and 38 deletions

View file

@ -5,6 +5,7 @@ FactoryBot.define do
# requires order
factory :group_order do
ordergroup { create(:user, groups: [FactoryBot.create(:ordergroup)]).ordergroup }
updated_by { create :user }
end
end

View file

@ -6,6 +6,7 @@ FactoryBot.define do
supplier
number { rand(1..99999) }
amount { rand(0.1..26.0).round(2) }
created_by { create :user }
after :create do |invoice|
invoice.supplier.reload

View file

@ -6,6 +6,8 @@ FactoryBot.define do
starts { Time.now }
supplier { create :supplier, article_count: (article_count.nil? ? true : article_count) }
article_ids { supplier.articles.map(&:id) unless supplier.nil? }
created_by { create :user }
updated_by { create :user }
transient do
article_count { true }

View file

@ -11,6 +11,12 @@ FactoryBot.define do
article_count { 0 }
end
before :create do |supplier, evaluator|
next if supplier.class == SharedSupplier
next if supplier.supplier_category_id?
supplier.supplier_category = create :supplier_category
end
after :create do |supplier, evaluator|
article_count = evaluator.article_count
article_count = rand(1..99) if article_count == true
@ -20,4 +26,9 @@ FactoryBot.define do
factory :shared_supplier, class: SharedSupplier
end
factory :supplier_category do
sequence(:name) { |n| Faker::Lorem.characters(number: rand(2..12)) + " ##{n}" }
financial_transaction_class
end
end