Sha256: 0659e17cfc8dd7a16f783ef8b860285cda528c6a904019662a574fe20b9a2a81

Contents?: true

Size: 643 Bytes

Versions: 4

Compression:

Stored size: 643 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
        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-6.4.0 lib/factory_bot/trait.rb
factory_bot-6.3.0 lib/factory_bot/trait.rb
factory_bot-6.2.1 lib/factory_bot/trait.rb
factory_bot-6.2.0 lib/factory_bot/trait.rb