Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们刚刚从使用带有红绿色 gem 的 Test::Unit 的第一个版本转移到 Test::Unit 2.5.3 并且输出有点搞砸了。
我只想让 Test::Unit 像 RSpec 一样输出测试结果,它几乎可以,但对我来说,每当发生故障或错误时,它就会在该位置输出结果,而不是聚合所有结果并输出它们最后在测试全部运行后。
在这种情况下,Redgreen 宝石似乎没有任何作用。
有没有办法让它按照我想要的方式格式化?
在翻阅文档后发现了这一点。您必须使用以下设置创建一个 test-unit.yml 并将其粘贴到您的 rails 应用程序的根目录中
runner: console console_options: output_level: 2 show_detail_immediately: false