2

我的助手调用 ApplicationController 中定义的方法作为助手方法。当应用程序处于调试或生产模式时,此模式工作正常,但是当我尝试为此帮助程序运行测试时,它会导致NoMethodError: undefined method method_name 我还需要/包含什么?

4

2 回答 2

0

将 helper 方法移动到 helpers/application_helper.rb 中,并添加

helper ApplicationHelper

在应用程序控制器中

于 2016-09-25T01:31:29.843 回答
-1

create a folder called spec/support

inside create utilities.rb

in utilities.rb

insert the method from your ApplicationController.

于 2013-04-03T13:13:07.717 回答