ruby-on-rails – 我可以在RSpec请求中访问Application Helper方法吗?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 我可以在RSpec请求中访问Application Helper方法吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
鉴于我在ApplicationHelper模块中有一个full_title方法,如何以RSpec请求规范进行访问?

我现在有以下代码

应用程序/佣工/ application_helper.rb

module ApplicationHelper

    # Returns the full title on a per-page basis.
    def full_title(page_title)
      base_title = "My Site title"
      logger.debug "page_title: #{page_title}"
      if page_title.empty?
         base_title
      else
        "#{page_title} - #{base_title}"
      end
    end

规格/请求/ user_pages_spec.rb

require 'spec_helper'

   describe "User Pages" do
      subject { page }

      describe "signup page" do 
          before { visit signup_path }

          it { should have_selector('h2',text: 'Sign up') } 
          it { should have_selector('title',text: full_title('Sign Up')) } 

      end
    end

在运行此规范时,我收到此错误消息:

NoMethodError:
未定义的方法full_title’for#< RSpec :: Core :: ExampleGroup :: Nested_1 :: Nested_1:0x00000003d43138>

根据Michael Hartl的Rails Tutorial的测试,我应该能够访问我的用户规范中的应用程序帮助程序.我在这里犯了什么错?

解决方法

按照列表5.26中的规范/ support / utilities.rb创建帮助器.
原文链接:https://www.f2er.com/ruby/272493.html

猜你在找的Ruby相关文章