I'm trying to setup Devise inside a Rails Engine to handle auth for the main app. The engine is a mountable isolated engine mounted at '/ryte'. When I run my specs I get an undefined method "authenticate_admin" error. My engines routes file looks like:
Ryte::Engine.routes.draw do
devise_for :admins, {
class_name: "Ryte::Admin",
module: :devise
}
end
I have included:
config.include Devise::TestHelpers, :type => :controller
In my devise.rb initializer I have:
config.router_name = :ryte
In the spec_helper.rb. I've also mounted the app inside the engine's dummy app. The model for admins is Ryte::Admin. Lastly I am placing the before_filter for authenticate_admin inside my application controller. I'm confused why this error is coming up. Help is appreciated.