我想对我的 rails 3 应用程序进行性能测试,并根据 rails 在线指南进行了尝试
rake test:profile
它给出了一些输出:
Specify ruby-prof as application's dependency in Gemfile to run benchmarks.
Loaded suite /usr/local/lib/ruby/gems/1.9.1/gems/rake-0.9.2/lib/rake/rake_test_loader
Started
.
Finished in 0.326233 seconds.
1 tests, 0 assertions, 0 failures, 0 errors, 0 skips
但根据指南,应该是这样的:
BrowsingTest#test_homepage (31 ms warmup)
wall_time: 6 ms
memory: 437.27 KB
objects: 5,514
gc_runs: 0
gc_time: 19 ms
还有一些在应用程序的 tmp/performance 目录中生成的日志文件,在我的情况下不存在。
性能测试是在我的应用程序的 test\performance 目录中生成的示例测试 browser_test.rb:
require 'test_helper'
require 'rails/performance_test_help'
# Profiling results for each test method are written to tmp/performance.
class BrowsingTest < ActionDispatch::PerformanceTest
def test_homepage
get '/'
end
end
我的 Rails 版本是 3.0.10。谁能给我一些提示或提示?