Class: FactoryGirl::FactoryRunner
- Inherits:
-
Object
- Object
- FactoryGirl::FactoryRunner
- Defined in:
- lib/factory_girl/factory_runner.rb
Instance Method Summary (collapse)
-
- (FactoryRunner) initialize(name, strategy, traits_and_overrides)
constructor
A new instance of FactoryRunner.
- - (Object) run(runner_strategy = @strategy, &block)
Constructor Details
- (FactoryRunner) initialize(name, strategy, traits_and_overrides)
A new instance of FactoryRunner
3 4 5 6 7 8 9 |
# File 'lib/factory_girl/factory_runner.rb', line 3 def initialize(name, strategy, traits_and_overrides) @name = name @strategy = strategy @overrides = traits_and_overrides. @traits = traits_and_overrides end |
Instance Method Details
- (Object) run(runner_strategy = @strategy, &block)
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/factory_girl/factory_runner.rb', line 11 def run(runner_strategy = @strategy, &block) factory = FactoryGirl.factory_by_name(@name) factory.compile if @traits.any? factory = factory.with_traits(@traits) end instrumentation_payload = { name: @name, strategy: runner_strategy } ActiveSupport::Notifications.instrument('factory_girl.run_factory', instrumentation_payload) do factory.run(runner_strategy, @overrides, &block) end end |