mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
![Avielle](/assets/img/avatar_default.png)
Also: add a deprecation warning to factory_girl, asking users to switch to factory_bot https://github.com/thoughtbot/factory_girl/issues/921
27 lines
590 B
Ruby
27 lines
590 B
Ruby
module FactoryBot
|
|
class Attribute
|
|
# @api private
|
|
class Association < Attribute
|
|
attr_reader :factory
|
|
|
|
def initialize(name, factory, overrides)
|
|
super(name, false)
|
|
@factory = factory
|
|
@overrides = overrides
|
|
end
|
|
|
|
def to_proc
|
|
factory = @factory
|
|
overrides = @overrides
|
|
traits_and_overrides = [factory, overrides].flatten
|
|
factory_name = traits_and_overrides.shift
|
|
|
|
-> { association(factory_name, *traits_and_overrides) }
|
|
end
|
|
|
|
def association?
|
|
true
|
|
end
|
|
end
|
|
end
|
|
end
|