令人惊讶的是,我没有找到使Rails Minitest的输出变得丰富多彩的标准方法。但是,有一些解决方法。
这样做的方法是什么?
答案 0 :(得分:2)
将minitest-rg添加到Gemfile
中的测试组:
group :test do
gem "minitest-rg"
end
然后在minitest/rg
:
test/test_helper.rb
require "minitest/rg"
现在,您在运行rake test
时有丰富多彩的测试输出。
答案 1 :(得分:1)
当然,在此rakefile中将其更改为:
namespace :test do
task :isolated do
Dir.glob("test/**/*_test.rb").all? do |file|
sh(Gem.ruby, '-w', '-Ilib:test', file, '-p')
end or raise "Failures"
end
end
然后从控制台运行rake test:isolated
,同时在activesupport文件夹中观看彩虹!这是使用内置于骄傲库中的迷你色彩。