class TurboTest::RSpec::ConfigurationOptions

Public Class Methods

new(arguments, packer:) click to toggle source
Calls superclass method
# File lib/turbo_test/rspec/job.rb, line 30
def initialize(arguments, packer:)
        super(arguments)
        
        @packer = packer
end

Public Instance Methods

configure(config) click to toggle source
Calls superclass method
# File lib/turbo_test/rspec/job.rb, line 36
def configure(config)
        super(config)
        
        config.add_formatter(ExampleFormatter.new(@packer))
end
load_formatters_into(config) click to toggle source
# File lib/turbo_test/rspec/job.rb, line 42
def load_formatters_into(config)
        # Don't load any formatters, default or otherwise.
end