如何添加“耙子测试”投影

发布于 2024-10-14 19:19:51 字数 245 浏览 1 评论 0原文

当我运行 rake -T 时,我发现 rake test 丢失了。我需要做什么才能完成这个任务?具体来说,我想运行 rake test:benchmark 但似乎没有加载。例如...

$rake test:benchmark

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

When I ran rake -T, I discovered rake test was missing. What do I need to do to get this task in there? Specifically, I want to run rake test:benchmark but that doesn't seem to be loaded. For example...

$rake test:benchmark

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野の 2024-10-21 19:19:51

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

require 'rails/all'

My config/application.rb file was missing this line:

require 'rails/all'
春夜浅 2024-10-21 19:19:51

您只需要:

<代码>
需要“rails/test_unit/railtie”

在您的 config/application.rb

You only need:


require "rails/test_unit/railtie"

in your config/application.rb

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文