class FailedBackgroundProcessReporter

RSpec custom reporter config.add_formatter FailedBackgroundProcessReporter

Public Class Methods

new(output) click to toggle source
# File lib/rspec-background-process/background_process_helpers.rb, line 54
def initialize(output)
        @output = output
end

Public Instance Methods

example_failed(example) click to toggle source
# File lib/rspec-background-process/background_process_helpers.rb, line 58
def example_failed(example)
        @output << BackgroundProcessCoreHelpers.report_failed_instance
end