все
- язык: Рубин на рельсах
- версия: рельсы 3
- драгоценных камней, о которых идет речь: devise и factory_girl_rails
Я ссылался на https://github.com/plataformatec/devise/wiki/How-To:-Controllers-and-Views-tests-with-Rails-3-(and-rspec) и пытался настроить администраторов и обычных разработчиков, используя фабричную девочку для моих спецификаций контроллера. Я использую подтверждающий модуль в устройстве.
В spec / support / controller_macros.rb я вызываю подтверждение! после получения пользовательского объекта с завода.
Код / комментарий гласит
> "user.confirm! # or set a confirmed_at inside the factory. Only
> necessary if you are using the confirmable module"
Когда я устанавливаю значение «verify_at» в фабрике пользователей, spec / factories / users.rb и запускаю мои спецификации контроллера (rake spec: controllers), это работает, НО, когда я не устанавливаю значение «Verified_at» и положитесь на подтверждение! в spec / support / controller_macros.rb кажется, что подтверждают! не найден.
Я даже пытался вставить "включить Devise :: TestHelpers" в
Файл spec / support / controller_macros.rb, но все равно не работает.
Я получил ошибку
Failure/Error: Unable to find matching line from backtrace
NoMethodError:
undefined method `confirm!' for #<User:0x71d9c7901e48>
# ./spec/support/controller_macros.rb:8:in `login_user'
Мой spec / spec_helper.rb выглядит следующим образом.
----------- spec / spec_helper.rb - запустить ----------------------------
ENV["RAILS_ENV"] ||= 'test'
require File.expand_path("../../config/environment", __FILE__)
require 'rspec/rails'
require 'webrat'
# 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.mock_with :rspec
config.include Devise::TestHelpers, :type => :controller
config.extend ControllerMacros, :type => :controller
# Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
config.fixture_path = "#{::Rails.root}/spec/fixtures"
# If you're not using ActiveRecord, or you'd prefer not to run each of your
# examples within a transaction, remove the following line or assign false
# instead of true.
config.use_transactional_fixtures = true
end
----------- spec / spec_helper.rb - конец ----------------------------
Что может быть не так, что вызывает подтверждение! не быть найденным / работающим?
Спасибо:)