# File lib/test/unit/color-scheme.rb, line 91
        def available_colors
          case ENV["COLORTERM"]
          when "gnome-terminal"
            256
          else
            case ENV["TERM"]
            when "xterm-256color"
              256
            else
              8
            end
          end
        end