fnando/factory_bot-preload

`factory_get': undefined method `[]' for nil:NilClass (NoMethodError)

Closed this issue · 1 comments

Hi @fnando,

I am trying to run my suite with associations in preload but is returning this error. This happens when I try to load an association of another model!

factory :product do
...
association: category, factory: :category
end

preload do
  factory (:promotion) { create (:product, category: categories(:promotion)) }
end

Specified error:

gems/factory_girl-preload-2367d17f5d6e/lib/factory_girl/preload/helpers.rb:34:in factory_get': undefined method[]' for nil:NilClass (NoMethodError)

@ricardopacheco i've the same problem. Did you solved?