module TestProf::FactoryProf::FabricationPatch

Wrap run method with FactoryProf tracking

Public Instance Methods

create(name, overrides = {}) click to toggle source
Calls superclass method
# File lib/test_prof/factory_prof/fabrication_patch.rb, line 7
def create(name, overrides = {})
  FactoryBuilders::Fabrication.track(name) { super }
end