我正在尝试在test/performance/
目录中运行单个基准测试。有点像rake test:benchmark
会做,但只有一个测试。
之所以这样,是因为整个性能套件需要相当长的时间才能运行,而我只对测试最初会发生变化的模型感兴趣。
我试过这个,但它没有设置基准测试环境:
ruby -Ilib:test test/performance/email_list_test.rb
还尝试了rails基准测试程序EmailList.all
,但我认为必须从标准单元测试中提取。
答案 0 :(得分:7)
试试这个:
rake test:benchmark TEST=test/performance/email_list_test.rb