当我运行rake - T时,我发现rake test丢失了。我需要做些什么才能把这个任务放到那里?具体来说,我想运行rake test:benchmark,但似乎未加载。例如...

$rake test:benchmark

rake aborted!
Don't know how to build task 'test:benchmark'

最佳答案

我的config/application.rb文件缺少以下行:

require 'rails/all'

关于ruby-on-rails-3 - 如何将 'rake test'添加到项目,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4821658/

10-16 03:53