1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/lib/factory_bot/trait.rb
Daniel Colson 5f1a1de114 Run standardrb
This commit applies the changes from running `standardrb --fix`
2020-06-10 17:11:39 -04:00

33 lines
650 B
Ruby

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