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/evaluator.rb
Joshua Clayton 64e50a3121 Remove unnecessary conditional in Evaluator#method_missing
Evaluator has all methods defined dynamically; this includes standard
attributes AND overrides. Because of this, method_missing never actually
gets used to retrieve a value from previously declared attributes or
overrides.

This branch of logic was never accessed
2012-05-18 11:51:59 -04:00

67 lines
1.7 KiB
Ruby

require 'active_support/core_ext/hash/except'
require 'active_support/core_ext/class/attribute'
module FactoryGirl
# @api private
class Evaluator
class_attribute :attribute_lists
private_instance_methods.each do |method|
undef_method(method) unless method =~ /^__|initialize/
end
def initialize(build_class, build_strategy, overrides = {})
@build_class = build_class
@build_strategy = build_strategy
@overrides = overrides
@cached_attributes = overrides
@overrides.each do |name, value|
singleton_class.define_attribute(name) { value }
end
end
delegate :new, to: :@build_class
def association(factory_name, overrides = {})
strategy_override = overrides.fetch(:strategy) { :create }
runner = FactoryRunner.new(factory_name, strategy_override, [overrides.except(:strategy)])
@build_strategy.association(runner)
end
def instance=(object_instance)
@instance = object_instance
end
def method_missing(method_name, *args, &block)
if @instance.respond_to?(method_name)
@instance.send(method_name, *args, &block)
else
SyntaxRunner.new.send(method_name, *args, &block)
end
end
def __override_names__
@overrides.keys
end
def self.attribute_list
AttributeList.new.tap do |list|
attribute_lists.each do |attribute_list|
list.apply_attributes attribute_list.to_a
end
end
end
def self.define_attribute(name, &block)
define_method(name) do
if @cached_attributes.key?(name)
@cached_attributes[name]
else
@cached_attributes[name] = instance_exec(&block)
end
end
end
end
end