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! While you're at it, check out some resources Treehouse students have shared here.

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

Ruby

Fixtures 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
Brandon Barrette
20,485 Points

You 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!

Aaaahhh...yes that's the ticket.. that fixed it, thank you.