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.

link|improve this question

65% accept rate
Can you please post your code? As much as possible will help! – tbaums Apr 28 '11 at 13:47
Posting a descriptive portion of the error you are seeing will help others help you too. – Perry Horwich Apr 28 '11 at 15:21
Hi everyone, thanks for taking a look at this. I've finally worked it out. Apparently in the tests I need to create the factory user AFTER I've called visit signin_path and 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
feedback

1 Answer

You may have bumped into a variant of this:
Rails 3 Tutorial Chapter 11 "Validation failed: Email has already been taken" error

And Mike Hartl, The Rails Tutorial author, responds here:
Record persisting past test in Rails3

link|improve this answer
Thank's Perry. Don't think that's it though. I have already come across that problem and implemented Database Cleaner after every test. I'll keep trying to figure this out. It's definitely annoying me. – markstewie Apr 28 '11 at 19:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.