Sha256: e25968eb70bdba33090a8bd51a88a9d04c94eaa34bac0d0a126fce193cccd6c9
Contents?: true
Size: 262 Bytes
Versions: 2378
Compression:
Stored size: 262 Bytes
Contents
# frozen_string_literal: true module RSpec module Support module WithIsolatedStdErr def with_isolated_stderr original = $stderr $stderr = StringIO.new yield ensure $stderr = original end end end end
Version data entries
2,378 entries across 2,377 versions & 19 rubygems