Rails3 rake 不运行我的测试
在新的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我按照 Mongoid 安装的说明进行操作时,
我将其
在了解(并插入)测试后,
替换为开始被选中
When I followed the instructions for Mongoid's installation, I replaced
with
after learning about (and inserting)
tests started to get picked up