ApplicationController:Rails + rspec + idee = método indefinido `authenticate_user! '
class ApplicationController < ActionController::Base
before_filter :authenticate_user!
protect_from_forgery
end
DashboardsController:
class DashboardsController < ApplicationController
def index
end
end
DashboardsControllerSpec:
require 'spec_helper'
describe DashboardsController do
include Devise::TestHelpers
describe "GET 'index'" do
it "returns http success" do
get 'index'
response.should be_success
end
end
end
Resultado:
Failure/Error: get 'index'
NoMethodError:
undefined method `authenticate_user!' for #<DashboardsController:0x007fef81f2efb8>
Carriles versión: 3.1.3
versión Rspec: Versión 2.8.0
Diseñar: 1.5.3
Nota: También creé el soporte de archivos/deviser.rb pero eso no ayuda. ¿Algunas ideas?
El [idear Wiki] (https://github.com/plataformatec/devise/wiki/How-To:-Controllers-and-Views-tests-with-Rails-3- (and-rspec)) proporciona un algunas formas diferentes de integrar el diseño con rspec. –