Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
davidalvarado
7,544 PointsFixtures uniqueness error..
When running the test for after creating the fixture I get the following error:
ActiveRecord::StatementInvalid: Could not find table 'statuses'
I have created a fresh db, migrated and I'm getting this error.. any ideas?
1 Answer

Brandon Barrette
20,485 PointsYou need to set up the test database. It is separate from the database your site runs on. Use:
rake db:test:prepare #to catch up the test database to current migrations
rake db:test:load #redo the test database to match the schema.rb file
Hope that helps!
davidalvarado
7,544 Pointsdavidalvarado
7,544 PointsAaaahhh...yes that's the ticket.. that fixed it, thank you.