Created
January 7, 2012 17:05
-
-
Save seanbehan/1575327 to your computer and use it in GitHub Desktop.
Test Unit Colorized Output with Test:Unit and Ruby 1.9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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