Failing to test sign out with webrat, Rails with Authlogic?

This will happen if you are using the cookie session store, rather than the database session store. See config/initializers/session_store.rb.

This will happen if you are using the cookie session store, rather than the database session store. See config/initializers/session_store.rb. Yesterday, I began porting a project under development from 2.3.5 to 2.3.8.

Under 2.3.5, all specs and features were green. After changing the Rails version to 2.3.8, several Cucumber steps started failing. The steps were related to an inability to sign out (exactly what you describe here) and to the flash:notice being lost.

This project was created by copying files from another project into a clean-slate Rails project. In the process, the session migrations were copied, but session_store. Rb was not updated to actually use the database.

Once I uncommented "ActionController::Base. Session_store = :active_record_store" in session_store. Rb, the Cucumber steps started passing.

I'm getting the same error -- it would be nice to keep using the active record session stores and still have cucumber work with sessions. – Joe Van Dyk Jan 12 at 22:53.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions