#ruby-on-rails #testing #rspec #capybara #factory-bot
#ruby-on-rails #тестирование #rspec #capybara #завод-бот
Вопрос:
Я пытаюсь включить пользовательский вспомогательный модуль во все мои функциональные тесты. Я попытался создать модуль в spec_helper.rb, но я получаю следующую ошибку:
uninitialized constant FeatureHelper (NameError)
Вот мой spec_helper.rb в том виде, в каком он есть в настоящее время:
# This file is copied to spec/ when you run 'rails generate rspec:install'
ENV["RAILS_ENV"] ||= 'test'
require File.expand_path("../../config/environment", __FILE__)
require 'rspec/rails'
require 'rspec/autorun'
require 'capybara/rspec'
include Warden::Test::Helpers
module FeautreHelper
def login
shop = create(:shop)
user = create(:user)
login_as user, scope: :user
user
end
end
# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/support/ and its subdirectories.
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
RSpec.configure do |config|
config.include FactoryGirl::Syntax::Methods
config.include FeatureHelper, type: :feature
...
...
( Ошибка из строки 23 config.include FeatureHelper, type: :feature
)
Почему мой FeatureHelper
модуль не обнаруживается, и что я могу сделать, чтобы убедиться, что это так?
Ответ №1:
Определенный вами модуль не соответствует тому, который вы пытаетесь включить.
У вас есть имя модуля FeautreHelper
, но вы пытаетесь включить FeatureHelper
. Обратите внимание, что в имени модуля есть опечатка — u
он находится не в том месте.
Модуль следует переименовать:
module FeatureHelper
def login
shop = create(:shop)
user = create(:user)
login_as user, scope: :user
user
end
end