0

我有一个 ProductController,其中包含一个带有一些辅助方法的模块:

class ProductController < ApplicationController
  include ProductItemHelper

  def item
    @product = Product.find_by_id(params[:id])
  end
end

模块如下所示:

module ProductItemHelper

  def seoify(text)
    unless text.blank?
      "#{text.titleize} | "
    end
  end

end

然后在我看来,我这样调用辅助方法:

content_for :meta_title do
  "#{seoify(@product.title)}"
end

当我在任何环境中运行应用程序时,它应该可以正常工作,但是当我尝试在 RSpec 测试中访问页面时,它会命中控制器和视图,但会出错:

undefined method `seoify' for #<#<Class:0x0000000a6a0a18>:0x0000000b726e50>

我不明白为什么。我已经测试过从控制器调用该方法,它工作正常,@product.title 在整个视图的不同点应用了几种不同的方法,所以我希望能够从视图中引用模块方法。

我是否缺少一些 RSpec 配置以使其可访问?

4

2 回答 2

0

这个问题的公认答案让我走上了正轨,我只需要在我的规范目录中的帮助文件中包含这些方法。

于 2013-09-26T10:01:06.110 回答
0

尝试使用内置控制器的类方法helper来要求和包含帮助器

class ProductController < ApplicationController
  helper :product_item

http://apidock.com/rails/AbstractController/Helpers/ClassMethods/helper

于 2013-09-25T16:14:36.260 回答