我使用 Rspec 进行测试,但找不到如何将灰色更改为红色和绿色。我测试了这么多——尤其是在发生错误时——我很难阅读通过和失败。
你能帮忙的话,我会很高兴 :)
我通过执行以下两件事使其运行:
-c
该Runner options
字段在您的spec_helper.rb
中,添加以下代码:
RSpec.configure do |config|
config.tty = true
end
附加信息:http ://rubyforge.org/pipermail/rspec-users/2011-January/019327.html
在 spec_helper.rb 中:
RSpec.configure do |config|
config.color = true
end