Skip to content

Ensure all `puts` calls are on `$stdout`

Robert Speicher requested to merge rs-quiet-output into master

$stdout is re-assignable so we can, for example, do this in our spec helper to silence all of our output during a test run:

before(:suite) { $stdout = StringIO.new }

Merge request reports