thoughtbot--factory_bot/lib/factory_girl/attribute/association.rb

25 lines
410 B
Ruby

module FactoryGirl
class Attribute #:nodoc:
class Association < Attribute #:nodoc:
attr_reader :factory
def initialize(name, factory, overrides)
super(name)
@factory = factory
@overrides = overrides
end
def add_to(proxy)
proxy.associate(name, @factory, @overrides)
end
def association?
true
end
end
end
end