Sha256: 991b2fff42fa448c548d8c75c1f9d2dc7c71befdeef0ffd5dd5579c1e8ec22e5
Contents?: true
Size: 977 Bytes
Versions: 20
Compression:
Stored size: 977 Bytes
Contents
module FactoryGirl class DefinitionHierarchy def callbacks FactoryGirl.callbacks end def constructor FactoryGirl.constructor end def to_create FactoryGirl.to_create end def self.build_from_definition(definition) build_to_create(&definition.to_create) build_constructor(&definition.constructor) add_callbacks definition.callbacks end def self.add_callbacks(callbacks) if callbacks.any? define_method :callbacks do super() + callbacks end end end private_class_method :add_callbacks def self.build_constructor(&block) if block define_method(:constructor) do block end end end private_class_method :build_constructor def self.build_to_create(&block) if block define_method(:to_create) do block end end end private_class_method :build_to_create end end
Version data entries
20 entries across 17 versions & 8 rubygems