You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
spec/factories/holdings.rb:7:14: C: FactoryBot/FactoryAssociationWithStrategy: Use an implicit, explicit or inline definition instead of hard coding a strategy for setting association within factory.
item { build(:item, :available, location:) }
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
I don't think there is another way to write this given that location references another transient:
FactoryBot.define do
factory :holding do
transient do
location factory: :gre_stacks
item { build(:item, :available, location:) }
end
...