Sha256: 1a5c48504b41eeda6ed8c78a753d965212a8f0e246ee685ae40b9c5ccebfe5ab
Contents?: true
Size: 657 Bytes
Versions: 4
Compression:
Stored size: 657 Bytes
Contents
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_given? proxy.instance_eval(&@block) end end delegate :add_callback, :declare_attribute, :to_create, :define_trait, :constructor, :callbacks, :attributes, to: :@definition def names [@name] end def ==(other) name == other.name && block == other.block end protected attr_reader :block end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
factory_bot-5.2.0 | lib/factory_bot/trait.rb |
factory_bot-5.1.2 | lib/factory_bot/trait.rb |
factory_bot-5.1.1 | lib/factory_bot/trait.rb |
factory_bot-5.1.0 | lib/factory_bot/trait.rb |