class Minitest::Reporters::Suite
Attributes
name[R]
Public Class Methods
new(name)
click to toggle source
# File lib/minitest/reporters/base_reporter.rb, line 5 def initialize(name) @name = name end
Public Instance Methods
==(other)
click to toggle source
# File lib/minitest/reporters/base_reporter.rb, line 9 def ==(other) name == other.name end
eql?(other)
click to toggle source
# File lib/minitest/reporters/base_reporter.rb, line 13 def eql?(other) self == other end
hash()
click to toggle source
# File lib/minitest/reporters/base_reporter.rb, line 17 def hash name.hash end
to_s()
click to toggle source
# File lib/minitest/reporters/base_reporter.rb, line 21 def to_s name.to_s end