In Files

  • test-unit-3.3.4/lib/test/unit/color-scheme.rb

Class/Module Index [+]

Quicksearch

Test::Unit::ColorScheme

Public Class Methods

[](id) click to toggle source
 
               # File test-unit-3.3.4/lib/test/unit/color-scheme.rb, line 96
def [](id)
  @@schemes[id.to_s]
end
            
[]=(id, scheme_or_spec) click to toggle source
 
               # File test-unit-3.3.4/lib/test/unit/color-scheme.rb, line 100
def []=(id, scheme_or_spec)
  if scheme_or_spec.is_a?(self)
    scheme = scheme_or_spec
  else
    scheme = new(scheme_or_spec)
  end
  @@schemes[id.to_s] = scheme
end
            
all() click to toggle source
 
               # File test-unit-3.3.4/lib/test/unit/color-scheme.rb, line 92
def all
  @@schemes.merge("default" => default)
end
            
available_colors() click to toggle source
 
               # File test-unit-3.3.4/lib/test/unit/color-scheme.rb, line 109
def available_colors
  guess_available_colors_from_vte_version_env ||
    guess_available_colors_from_colorterm_env ||
    guess_available_colors_from_term_env ||
    8
end
            
default() click to toggle source
 
               # File test-unit-3.3.4/lib/test/unit/color-scheme.rb, line 9
def default
  if available_colors == 256
    default_for_256_colors
  else
    default_for_8_colors
  end
end
            
default_for_256_colors() click to toggle source
 
               # File test-unit-3.3.4/lib/test/unit/color-scheme.rb, line 55
def default_for_256_colors
  @@default_for_256_colors ||=
    new("pass" => Color.new("030", :background => true) +
                  Color.new("555", :bold => true),
        "pass-marker" => Color.new("050", :bold => true),
        "failure" => Color.new("300", :background => true) +
                     Color.new("555", :bold => true),
        "failure-marker" => Color.new("500"),
        "pending" => Color.new("303", :background => true) +
                      Color.new("555", :bold => true),
        "pending-marker" => Color.new("303"),
        "omission" => Color.new("001", :background => true) +
                      Color.new("555", :bold => true),
        "omission-marker" => Color.new("001"),
        "notification" => Color.new("011", :background => true) +
                          Color.new("555", :bold => true),
        "notification-marker" => Color.new("011"),
        "error" => Color.new("000", :background => true) +
                   Color.new("550", :bold => true),
        "error-marker" => Color.new("550"),
        "case" => Color.new("220", :background => true) +
                  Color.new("555", :bold => true),
        "suite" => Color.new("110", :background => true) +
                   Color.new("555", :bold => true),
        "diff-inserted-tag" => Color.new("500", :background => true) +
                               Color.new("000", :bold => true),
        "diff-deleted-tag" => Color.new("050", :background => true) +
                              Color.new("000", :bold => true),
        "diff-difference-tag" => Color.new("005", :background => true) +
                                 Color.new("555", :bold => true),
        "diff-inserted" => Color.new("300", :background => true) +
                           Color.new("555", :bold => true),
        "diff-deleted" =>  Color.new("030", :background => true) +
                           Color.new("555", :bold => true))
end
            
default_for_8_colors() click to toggle source
 
               # File test-unit-3.3.4/lib/test/unit/color-scheme.rb, line 18
def default_for_8_colors
  @@default_for_8_colors ||=
    new("pass" => Color.new("green", :background => true) +
                  Color.new("white", :bold => true),
        "pass-marker" => Color.new("green", :bold => true),
        "failure" => Color.new("red", :background => true) +
                     Color.new("white", :bold => true),
        "failure-marker" => Color.new("red"),
        "pending" => Color.new("magenta", :background => true) +
                     Color.new("white", :bold => true),
        "pending-marker" => Color.new("magenta"),
        "omission" => Color.new("blue", :background => true) +
                     Color.new("white", :bold => true),
        "omission-marker" => Color.new("blue"),
        "notification" => Color.new("cyan", :background => true) +
                          Color.new("white", :bold => true),
        "notification-marker" => Color.new("cyan"),
        "error" => Color.new("black", :background => true) +
                   Color.new("yellow", :bold => true),
        "error-marker" => Color.new("yellow"),
        "case" => Color.new("blue", :background => true) +
                  Color.new("white", :bold => true),
        "suite" => Color.new("green", :background => true) +
                   Color.new("white", :bold => true),
        "diff-inserted-tag" => Color.new("red", :background => true) +
                               Color.new("black", :bold => true),
        "diff-deleted-tag" => Color.new("green", :background => true) +
                              Color.new("black", :bold => true),
        "diff-difference-tag" => Color.new("cyan", :background => true) +
                                 Color.new("white", :bold => true),
        "diff-inserted" => Color.new("red", :background => true) +
                           Color.new("white", :bold => true),
        "diff-deleted" =>  Color.new("green", :background => true) +
                           Color.new("white", :bold => true))
end
            
new(scheme_spec) click to toggle source
 
               # File test-unit-3.3.4/lib/test/unit/color-scheme.rb, line 151
def initialize(scheme_spec)
  @scheme = {}
  scheme_spec.each do |key, color_spec|
    self[key] = color_spec
  end
end
            

Public Instance Methods

[](name) click to toggle source
 
               # File test-unit-3.3.4/lib/test/unit/color-scheme.rb, line 158
def [](name)
  @scheme[name.to_s]
end
            
[]=(name, color_spec) click to toggle source
 
               # File test-unit-3.3.4/lib/test/unit/color-scheme.rb, line 162
def []=(name, color_spec)
  @scheme[name.to_s] = make_color(color_spec)
end
            
each(&block) click to toggle source
 
               # File test-unit-3.3.4/lib/test/unit/color-scheme.rb, line 166
def each(&block)
  @scheme.each(&block)
end
            
to_hash() click to toggle source
 
               # File test-unit-3.3.4/lib/test/unit/color-scheme.rb, line 170
def to_hash
  hash = {}
  @scheme.each do |key, color|
    hash[key] = color
  end
  hash
end