class Test::Unit::Color

def ==(other)

def ==(other)
  self.class === other and
    [name, background?, intensity?,
     bold?, italic?, underline?] ==
    [other.name, other.background?, other.intensity?,
     other.bold?, other.italic?, other.underline?]
end