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_girl/trait.rb
2012-03-16 16:43:23 -04:00

29 lines
593 B
Ruby

module FactoryGirl
class Trait
attr_reader :name
def initialize(name, &block) #:nodoc:
@name = name
@block = block
@definition = Definition.new
proxy = FactoryGirl::DefinitionProxy.new(@definition)
proxy.instance_eval(&@block) if block_given?
end
delegate :add_callback, :declare_attribute, :to_create, :define_trait,
:callbacks, :attributes, to: :@definition
def names
[@name]
end
def ==(other)
name == other.name &&
block == other.block
end
protected
attr_reader :block
end
end