当我运行rake -
T时,我发现rake test
丢失了。我需要做什么才能完成这项任务?具体来说,我想运行rake test:benchmark
,但似乎没有加载。例如......
$rake test:benchmark
rake aborted!
Don't know how to build task 'test:benchmark'
答案 0 :(得分:9)
我的config/application.rb
文件缺少此行:
require 'rails/all'
答案 1 :(得分:3)
你只需要:
require "rails/test_unit/railtie"
在config/application.rb