Sha256: dec1d28e22ee5a7912187494a8efcc4601822cfbea2f1f087788c7b0c8ef243a
Contents?: true
Size: 438 Bytes
Versions: 116
Compression:
Stored size: 438 Bytes
Contents
require_relative "../../test_helper" module MinitestReportersTest class MinitestReporterPluginTest < Minitest::Test def test_delegates_io reporter = Minitest::Reporters::DefaultReporter.new io_handle = STDOUT dr = Minitest::Reporters::DelegateReporter.new([ reporter ], :io => io_handle) assert_equal io_handle, dr.io dr.send :all_reporters assert_equal io_handle, reporter.io end end end
Version data entries
116 entries across 74 versions & 11 rubygems