class Forks < Wrapper
- Inherits from
Wrapper
Inherited Methods
From Covered::Wrapper:
Tracks coverage across forked child processes.
Classes and Modules
module HandlerHandles
Process.forkso child processes record coverage independently.
Definitions
def start
Start tracking coverage and install the fork handler.
Implementation
def start
super
Handler.start(self)
end
def finish
Stop tracking coverage and remove the fork handler state.
Implementation
def finish
Handler.finish(self)
super
end