私はrspecでテストするためにいくつかのヘルパーを含めようとしていますが、運はありません。
私がしたこと:
spec
フォルダの下にsupport/helpers.rb
ファイルを作成しました。
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でこのヘルパーを使用するにはどうすればよいですか?
ありがとう。
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
必要なモジュールをspecファイルに直接含めるだけです。
include PostsHelper