gpt4 book ai didi

ruby-on-rails - Rails 测试找不到 test_helper

转载 作者:数据小太阳 更新时间:2023-10-29 06:27:09 27 4
gpt4 key购买 nike

我试图通过 ruby​​ test/unit/mytest.rb 运行单独的测试,但我总是收到“没有这样的文件要加载 - test_helper”的错误。 Google 提出了一些建议,但没有一个对我有用。我在 Ubuntu 10.10 上运行 Rails 3.0、Ruby 1.9.2(通过 RVM)

这是我到目前为止所做的尝试 - 非常感谢任何建议

  • 将“require test_helper”更改为“require File.dirname(FILE) + “/../test_helper”” 在 test/unit/mytest_test.rb 中。它带回“没有要加载的文件 -- test/unit/../test_helper”
  • 尝试运行 rvm test/unit/mytest_test.rb 同上
  • 尝试运行 ruby​​ -I test/unit/mytest_test.rb。没有消息到终端。等了大约5分钟后,ctrl+c退出了

非常感谢任何建议 - 我很难过。

最佳答案

ruby 1.9.2 从加载路径中删除了当前目录“.”。我必须这样做才能让它工作:

require 'test_helper'

并这样调用它:

ruby -I. unit/person_test.rb 

关于ruby-on-rails - Rails 测试找不到 test_helper,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3950768/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com