1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/lib/factory_bot/attribute/association.rb
Daniel Colson 5f1a1de114 Run standardrb
This commit applies the changes from running `standardrb --fix`
2020-06-10 17:11:39 -04:00

27 lines
586 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