How can I generate a report that shows me my slowe

2019-05-04 06:10发布

I know that RSpec has the --profile option, but I'm only using MiniTest/shoulda for my current project.

2条回答
神经病院院长
2楼-- · 2019-05-04 06:43

You can use minitest-reporters for this purpose. This gem provide multiple reporters to see output of your tests.

Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new

Spec reporter shows the time which each test take to run. It shows the time on console, not as a report.

查看更多
我只想做你的唯一
3楼-- · 2019-05-04 06:47

You can just use:

rake TESTOPTS="-v"

right out of the box. eg:

rake TESTOPTS="-v" test:controllers

I have tested this with Ruby 1.9.3 on Rails 3.2.

查看更多
登录 后发表回答