DEBSOURCES
Skip Quicknav
sources / ruby-mocha / 2.4.2-2 / lib / mocha / debug.rb
123456789
module Mocha module Debug OPTIONS = (ENV['MOCHA_OPTIONS'] || '').split(',').freeze def self.puts(message) warn(message) if OPTIONS.include?('debug') end end end