Я пытаюсь включить несколько помощников для тестирования с помощью rspec, но безуспешно.
Что я сделал:
создал файл support/helpers.rb
в моей папке spec
.
support / helpers.rb
module Helpers
include ActionView::Helpers::NumberHelper
include ActionView::Helpers::TextHelper
end
и попытался запросить этот файл в spec_helper.rb
.
# This file is copied to spec/ when you run 'rails generate rspec:install'
require 'rubygems'
require 'spork'
require 'support/helpers'
Spork.prefork do
.
.
end
, что приводит к следующей ошибке:
/spec/support/helpers.rb:2:in `<module:Helpers>': uninitialized constant Helpers::ActionView (NameError)
Как мне сделать, чтобы эти помощники были доступны с Rspec?
Спасибо.