我正在尝试包含一些助手来测试rspec但没有运气。
我做了什么:
在我的support/helpers.rb
文件夹下创建了一个spec
文件。
支持/ 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提供这些助手?
感谢。
答案 0 :(得分:35)
一旦Rails堆栈可用,我通常会包含此代码以要求我的spec/support
子目录下的所有内容:
Spork.prefork do
# ...
Dir[Rails.root.join('spec', 'support', '**', '*.rb')].each { |f| require f }
RSpec.configure do |config|
config.include MyCustomHelper
# ...
end
end
请注意,这将在所有示例类型(控制器,模型,视图,帮助程序等)中包含MyCustomHelper
。您可以通过传递:type
参数来缩小范围:
config.include MyControllerHelper, :type => :controller
答案 1 :(得分:22)
只需在spec文件中直接包含您需要的模块:
include PostsHelper