Skip to content

Commit

Permalink
Output the name of the class explicitly in SpecReporter
Browse files Browse the repository at this point in the history
This solves a problem when running through a DRb server such as spork of
outputing #<DRb::DRbUnknown:0x007ff87e126708> instead of the intended class name.
  • Loading branch information
cehoffman committed Oct 26, 2011
1 parent bb34ab9 commit 7509130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/minitest/reporters/spec_reporter.rb
Expand Up @@ -32,7 +32,7 @@ def after_suites(suites, type)
end

def before_suite(suite)
puts suite
puts suite.name
end

def after_suite(suite)
Expand Down

0 comments on commit 7509130

Please sign in to comment.