diff --git a/test/colors.rb b/test/colors.rb deleted file mode 100644 index 35d0de1..0000000 --- a/test/colors.rb +++ /dev/null @@ -1,57 +0,0 @@ -require 'test/unit' -require 'test/unit/ui/console/testrunner' - -module Color - COLORS = { :clear => 0, :red => 31, :green => 32, :yellow => 33 } - def self.method_missing(color_name, *args) - colname = color_name.to_s - ansi_color = (colname =~ /^light/ ? - light_color(colname.gsub(/light/, '')) : - color(colname)) - ansi_color + args.first + color(:clear) - end - def self.color(color) - "\e[#{COLORS[color.to_sym]}m" - end - - def self.light_color(color) - "\e[1;#{COLORS[color.to_sym]}m" - end -end - -class Test::Unit::UI::Console::TestRunner - def output_single(something, level=NORMAL) - return unless (output?(level)) - something = case something - when '.' then Color.green('.') - when 'F' then Color.red("F") - when 'E' then Color.yellow("E") - else something - end - @io.write(something) - @io.flush - end -end - -class Test::Unit::TestResult - alias :old_to_s :to_s - def to_s - if old_to_s =~ /\d+ tests, \d+ assertions, (\d+) failures, (\d+) errors/ - Color.send($1.to_i != 0 || $2.to_i != 0 ? :red : :green, $&) - end - end -end - -class Test::Unit::Failure - alias :old_long_display :long_display - def long_display - old_long_display.sub('Failure', Color.red('Failure')) - end -end - -class Test::Unit::Error - alias :old_long_display :long_display - def long_display - old_long_display.sub('Error', Color.yellow('Error')) - end -end diff --git a/test/test_helper.rb b/test/test_helper.rb index 988eda3..6e64237 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -208,6 +208,4 @@ class ActionController::IntegrationTest end -require File.dirname(__FILE__) + '/colors' - Profile -- libgit2 0.21.2