Skip to content

Instantly share code, notes, and snippets.

@seanbehan
Created January 7, 2012 17:05
Show Gist options
  • Save seanbehan/1575327 to your computer and use it in GitHub Desktop.
Save seanbehan/1575327 to your computer and use it in GitHub Desktop.
Test Unit Colorized Output with Test:Unit and Ruby 1.9
#test/test_helper.rb
require 'test/unit/ui/console/testrunner'
class Test::Unit::UI::Console::TestRunner
def guess_color_availability
true
end
end
#Gemfile
group :development, :test do
gem "minitest", "~> 2.10.0"
gem "turn", "~> 0.8.3"
gem 'test-unit', '~> 2.0.0'
gem 'autotest-rails'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment