# File test-unit-3.3.7/lib/test/unit/color.rb, line 125
def +(other)
self.class.new([self, other])
end
# File test-unit-3.3.7/lib/test/unit/color.rb, line 129
def ==(other)
self.class === other and colors == other.colors
end