0

我在 Rails 应用程序中使用 Turn gem 来着色我的 Test::Unit 输出,并且在我的任何测试运行之前我发现以下输出:

stephen@x5:~/code/ruby$ rake test
gem install minitest
gem install minitest
... tests seem to run just fine, and are nicely coloured

每次我运行它们时都会发生这种情况。这里有什么交易?我应该使用 minitest 而不是 Test::Unit 吗?

着色 Test::Unit 输出的最佳方法是什么?只是寻找红色和绿色。

4

1 回答 1

1

gem 'redgreen'使用 Test::Unit 对我来说非常有用(在 Ruby 1.9.2 和 Rails 3.0.7 上)。

将以上内容添加到您的 Gemfile。

RubyGems上。

于 2012-10-21T20:47:38.847 回答