I am working through the (excellent) railstutorial.org site have have a basic question about rspec.
When I run the below test on a new user model, I get an \"unknown att
The field may be missing from your test database, but present in your development database (which is why the console is working).
Try making sure your migrations are all up to date and then update the test database:
rake db:migrate rake db:test:prepare
Did you run rake db:test:prepare?
rake db:test:prepare