RailsTutorial / require test_helper

时间:2015-07-09 00:06:43

标签: ruby-on-rails railstutorial.org

我一直在关注RailsTutorial.org的书(我在第6章)并且在“localhost:3000”上显示页面没有问题,能够编辑html.erb文件和css到我的心脏的内容......然后突然,我在终端收到错误:

  

ActionController :: RoutingError(未定义的局部变量或方法test_helper' for main:Object):app/controllers/static_pages_controller.rb:1:in'

除了a,“我们很抱歉,但出了点问题。”在localhost。

Here is my github push...

我该怎么做才能恢复正常运行?

1 个答案:

答案 0 :(得分:0)

您应该从 app / controllers / static_pages_controller.rb 文件中删除require test_helper。该行应该只进入您的测试,因为它是为测试设计的帮助器。特别是在 tests / models / user_test.rb 文件中,因为您已经在第6章。