Hi all, My unit tests and functional tests are failing because my tests aren''t authenticated. I''m using using user engine and login engine. How can I fake authentication to make my tests work properly. Thanks, Jason Edgecombe
Jason Edgecombe wrote:> My unit tests and functional tests are failing because my tests aren''t > authenticated. I''m using using user engine and login engine. > > How can I fake authentication to make my tests work properly.You''ll need to sneak an authenticated user into the session @request.session[:user] = User.find_by_email("shawn@iridesco.com") best place for this is the suite''s setup method zsombor -- Company - http://primalgrasp.com Thoughts - http://deezsombor.blogspot.com