Rails3 rake 不运行我的测试

发布于 2024-09-25 18:45:53 字数 297 浏览 2 评论 0原文

在新的 R3 应用程序中,我似乎无法运行任何测试(有 2 个,“/”的规范功能测试和我创建的另一个单元测试)

查看此输出:

rails_app$ rake test --trace
(in /Users/jan/portfolio/rails_app)
** Invoke test (first_time, not_needed)
rails_app$

可能出了什么问题? “first_time, not_needed”是什么意思? 这可能与我正在使用 Mongoid 的事实有关......

In a fresh R3 app, I seem to be unable to run any tests (there are 2, the canonical functional test for "/" and another unit test I created)

See this output:

rails_app$ rake test --trace
(in /Users/jan/portfolio/rails_app)
** Invoke test (first_time, not_needed)
rails_app$

What could be wrong? What is the meaning of first_time, not_needed'?
t might have to do with the fact, that I am using Mongoid...

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

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

发布评论

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

评论(1

青衫负雪 2024-10-02 18:45:53

当我按照 Mongoid 安装的说明进行操作时,

require 'rails/all'

我将其

require "action_controller/railtie"
require "action_mailer/railtie"
require "active_resource/railtie"

在了解(并插入)测试后,

require "rails/test_unit/railtie"

替换为开始被选中

When I followed the instructions for Mongoid's installation, I replaced

require 'rails/all'

with

require "action_controller/railtie"
require "action_mailer/railtie"
require "active_resource/railtie"

after learning about (and inserting)

require "rails/test_unit/railtie"

tests started to get picked up

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