Sha256: 5f28d1d58416514412edc73d9b7fe59c6a4e51047e069eb42a9f447eca2518d3
Contents?: true
Size: 716 Bytes
Versions: 71
Compression:
Stored size: 716 Bytes
Contents
module FactoryGirl class Callback attr_reader :name, :block def initialize(name, block) @name = name.to_sym @block = block check_name end def run(instance, evaluator) case block.arity when 1 then block.call(instance) when 2 then block.call(instance, evaluator) else block.call end end def ==(other) name == other.name && block == other.block end private def check_name unless FactoryGirl.callback_names.include?(name) raise InvalidCallbackNameError, "#{name} is not a valid callback name. " + "Valid callback names are #{FactoryGirl.callback_names.inspect}" end end end end
Version data entries
71 entries across 67 versions & 5 rubygems