Class: FactoryBot::Strategy::Create
- Inherits:
-
Object
- Object
- FactoryBot::Strategy::Create
- Defined in:
- lib/factory_bot/strategy/create.rb
Instance Method Summary collapse
Instance Method Details
#association(runner) ⇒ Object
4 5 6 |
# File 'lib/factory_bot/strategy/create.rb', line 4 def association(runner) runner.run end |
#result(evaluation) ⇒ Object
8 9 10 11 12 13 14 15 |
# File 'lib/factory_bot/strategy/create.rb', line 8 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 |
#to_sym ⇒ Object
17 18 19 |
# File 'lib/factory_bot/strategy/create.rb', line 17 def to_sym :create end |