Class: Test::Unit::MixColor

Inherits:
Object
  • Object
show all
Defined in:
lib/test/unit/color.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(colors) ⇒ MixColor

Returns a new instance of MixColor.



100
101
102
# File 'lib/test/unit/color.rb', line 100

def initialize(colors)
  @colors = colors
end

Instance Attribute Details

#colorsObject (readonly)

Returns the value of attribute colors.



99
100
101
# File 'lib/test/unit/color.rb', line 99

def colors
  @colors
end

Instance Method Details

#+(other) ⇒ Object



114
115
116
# File 'lib/test/unit/color.rb', line 114

def +(other)
  self.class.new([self, other])
end

#==(other) ⇒ Object



118
119
120
# File 'lib/test/unit/color.rb', line 118

def ==(other)
  self.class === other and colors == other.colors
end

#escape_sequenceObject



110
111
112
# File 'lib/test/unit/color.rb', line 110

def escape_sequence
  "\e[#{sequence.join(';')}m"
end

#sequenceObject



104
105
106
107
108
# File 'lib/test/unit/color.rb', line 104

def sequence
  @colors.inject([]) do |result, color|
    result + color.sequence
  end
end