包括帮助程序不起作用

我试图在我的测试中加入一些助手,但我不能让它有效。 我收到以下错误:

/home/edu/.rvm/rubies/ruby-1.9.3-p392/bin/ruby -S rspec ./spec/features/customers_spec.rb ./spec/features/login_spec.rb ./spec/features/products_spec.rb ./spec/features/suppliers_spec.rb /home/edu/Desktop/rails_proyects/gg/spec/support/features.rb:2:in `block in ': uninitialized constant MyHelp (NameError) from /home/edu/.rvm/gems/ruby-1.9.3-p392@gg/gems/rspec-core-2.14.6/lib/rspec/core.rb:120:in `configure' from /home/edu/Desktop/rails_proyects/gg/spec/support/features.rb:1:in `' 

我有这个:

 # spec/support/features/session_helper.rb module MyHelp module SessionHelpers ... def sign_in ... end end end # spec/support/features.rb RSpec.configure do |config| config.include MyHelp::SessionHelpers, type: :feature end 

我在这里用它:

 # spec/features/login_spec.rb require 'spec_helper' feature "Login" do scenario "with valid credentials" do user = create(:user) sign_in user.email, user.password page.should have_content(I18n.t('layouts.header.exit', locale: 'es')) end end 

我正在使用:

 rspec (2.14.1) rspec-core (2.14.6, 2.14.5) rspec-expectations (2.14.3, 2.14.2) rspec-mocks (2.14.4, 2.14.3) rspec-rails (2.14.0) ruby 1.9.3p392 rails 3.2.13 

有人可以帮我弄这个吗? 谢谢。

在您尝试在spec/support/features.rb使用它之前,您似乎只需要新的帮助程序

 require Rails.root.join('spec/support/features/session_helper') 

此外,最佳做法是让您的类/模块与文件名匹配,因此文件应该是多元化的,或者帮助程序是单一化的。