I know this question has been replied many times, but the existing answers are not resolving my issue.
I want to run my rspec tests for the controllers. I need to authenticate the user through Authlogic.
As many of you said (in other similar questions), I added to the spec_helper.rb file:
require "authlogic/test_case"
include Authlogic::TestCase
and activate_authlogic in the before each in my events_controller_spec.rb:
...
before :each do
activate_authlogic
user = FactoryGirl.create(:user)
UserSession.create(user)
end
...
but running the rspec, I get always the infamous error message:
Failure/Error: UserSession.create(user)
Authlogic::Session::Activation::NotActivatedError:
You must activate the Authlogic::Session::Base.controller with a controller object before creating objects
Can you see what's wrong on it ?
Any suggestions are really welcome.
Thanks!
ps.
Versions used: - rails 3.2 - rspec (2.11.0) - rspec-core (2.11.1)