I can't for the life of me figure out what's wrong with my code. I think I've followed everything word for word from Rails Tutorial 3 book but my tests won't pass any more.
It looks as if the Factory girl login isn't working because the tests that are failing seem fine when I look at the site in my browser.
Anyhow, if anyone feels like forking from https://github.com/markstewie/railstut_sampleapp and running rspec spec/ tests to see if they can work it out that would be much appreciated.
Thanks, mark.
visit signin_pathand NOT before as is listed in the book. This problem was in two places. 1: In the requests/users_spec in the "success, should sign a user in and out" test. and 2: In the requests/layout_links_spec in the "before(:each)" statement of "when signed in" test block. – markstewie Apr 28 '11 at 20:04