19

鉴于我full_title在 ApplicationHelper 模块中有一个方法,我如何在 RSpec 请求规范中访问它?

我现在有以下代码:

app/helpers/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

spec/requests/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: undefined method full_title' for #<RSpec::Core::ExampleGroup::Nested_1::Nested_1:0x00000003d43138>

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

4

3 回答 3

40

另一种选择是将其直接包含在 spec_helper 中

RSpec.configure do |config|
  ...
  config.include ApplicationHelper
end
于 2013-06-12T19:31:55.947 回答
10

我正在使用每个 gem 的当前最新版本做Ruby on Rails 教程(Rails 4.0 版本)。我遇到了类似的问题,想知道如何将 ApplicationHelper 包含到规范中。我让它使用以下代码:

规范/rails_helper.rb

RSpec.configure do |config|
  ...
  config.include ApplicationHelper
end

规范/请求/user_pages_spec.rb

require 'rails_helper'

describe "User pages", type: :feature do
  subject { page }

  describe "signup page" do 
    before { visit signup_path }

    it { is_expected.to have_selector('h2', text: 'Sign up') } 
    it { is_expected.to have_selector('title', text: full_title('Sign Up')) } 
  end
end

宝石文件

...
# ruby 2.2.1
gem 'rails', '4.2.1'
...
group :development, :test do
  gem 'rspec-rails', '~> 3.2.1' 
  ...
end

group :test do
  gem 'capybara', '~> 2.4.4'
  ...
于 2015-05-19T22:59:11.183 回答
1

spec/support/utilities.rb根据本书的清单 5.26创建助手。

于 2012-09-20T12:33:37.910 回答