Displaying 1 result from an estimated 1 matches for "controlleradapters".
Did you mean:
controller_adapters
2011 Jun 16
2
Authlogic: Trying to login in my Cucumber test - Authlogic::Session::Activation::NotActivatedError
...r.create!(
:login => login,
:password => "some_password",
:password_confirmation => "some_password",
:role => role,
:email => "some_email-oHC15RC7JGRl57MIdRCFDg@public.gmane.org"
)
#Authlogic::Session::Base.controller =
Authlogic::ControllerAdapters::RailsAdapter.new(self)
UserSession.create(
:login => login,
:password => "some_password"
)
end
I found that commented out bit - Authlogic::Session::Base.controller =
Authlogic::ControllerAdapters::RailsAdapter.new(self) - online, but it
leads to "save" not wo...