Sha256: c0a4ad5981b52c4e64a07ddb288db0bde63d80b07ea84a2c64fc1c821a9dbdc0
Contents?: true
Size: 424 Bytes
Versions: 168
Compression:
Stored size: 424 Bytes
Contents
module FactoryGirl module Strategy class Create def association(runner) runner.run end def result(evaluation) evaluation.object.tap do |instance| evaluation.notify(:after_build, instance) evaluation.notify(:before_create, instance) evaluation.create(instance) evaluation.notify(:after_create, instance) end end end end end
Version data entries
168 entries across 104 versions & 13 rubygems