Sha256: 499bbf1bc2ebcfd4d54edbbf55ad360de0b4e29d4664cfef1fee904213ab7035

Contents?: true

Size: 641 Bytes

Versions: 4

Compression:

Stored size: 641 Bytes

Contents

module FactoryBot
  # @api private
  class Trait
    attr_reader :name, :definition

    def initialize(name, &block)
      @name = name.to_sym
      @block = block
      @definition = Definition.new(@name)

      proxy = FactoryBot::DefinitionProxy.new(@definition)
      proxy.instance_eval(&@block) if block_given?
    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.0.1 lib/factory_bot/trait.rb
factory_bot-5.0.0 lib/factory_bot/trait.rb
factory_bot-5.0.0.rc2 lib/factory_bot/trait.rb
factory_bot-5.0.0.rc1 lib/factory_bot/trait.rb