class RSpec::Core::Formatters::BisectDRbFormatter

Used by ‘–bisect`. When it shells out and runs a portion of the suite, it uses this formatter as a means to have the status reported back to it, via DRb.

Note that since DRb calls carry considerable overhead compared to normal method calls, we try to minimize the number of DRb calls for perf reasons, opting to communicate only at the start and the end of the run, rather than after each example. @private

Public Class Methods

# File rspec-core/lib/rspec/core/formatters/bisect_drb_formatter.rb, line 16
def initialize(_output)
  drb_uri = "druby://localhost:#{RSpec.configuration.drb_port}"
  @bisect_server = DRbObject.new_with_uri(drb_uri)
  RSpec.configuration.files_or_directories_to_run = @bisect_server.files_or_directories_to_run
  super(Set.new(@bisect_server.expected_failures))
end

Public Instance Methods

# File rspec-core/lib/rspec/core/formatters/bisect_drb_formatter.rb, line 23
def notify_results(results)
  @bisect_server.latest_run_results = results
end