1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
module FactoryBot
# @api private
class Trait
attr_reader :name, :definition
def initialize(name, &block)
@name = name.to_s
@block = block
@definition = Definition.new(@name)
proxy = FactoryBot::DefinitionProxy.new(@definition)
if block
proxy.instance_eval(&@block)
end
end
def clone
Trait.new(name, &block)
end
delegate :add_callback, :declare_attribute, :to_create, :define_trait, :constructor,
:callbacks, :attributes, :klass, :klass=, to: :@definition
def names
[@name]
end
def ==(other)
name == other.name &&
block == other.block
end
protected
attr_reader :block
end
end
|