Module: TestBench::Output::Raw::Defaults

Defined in:
lib/test_bench/output/raw.rb

Class Method Summary collapse

Class Method Details

.detailObject



341
342
343
344
345
346
347
348
349
# File 'lib/test_bench/output/raw.rb', line 341

def self.detail
  detail = ::ENV['TEST_BENCH_DETAIL']

  if detail.nil?
    Raw.default_detail_setting
  else
    detail.to_sym
  end
end

.verboseObject



337
338
339
# File 'lib/test_bench/output/raw.rb', line 337

def self.verbose
  Environment::Boolean.fetch('TEST_BENCH_VERBOSE', false)
end