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 Build a Todo List Application with Rails 4 Build a Todo List Application with Rails 4 Write Our First Tests

Thomas Grzesiakowski
Thomas Grzesiakowski
5,180 Points

Hello unfortunately when I run my first "rake spec" in command prompt I get 4 failures.

(1) todo_lists/show renters attributes in <p></p> (2) todo_lists/new renders new todo_list form <p></p> (3)todo_lists/edit renders the edit todo_list form<p></p> (4)todo_lists/index renders a list of todo_lists<p></p>

All four of these errors occured in files automatically set up by the scaffold so I dont know how they could be incorrect. I had previously experienced a few errors just due to using old gems from the video tutorial but I usually update those gems via bundle install and all is fine. But for some reason these errors dont see solveable at my current skill level and I'm stuck for the moment.

Any and all suggestions are appreciated!

Hey Thomas,

I had the same problem. After googling the issue I found you must add the 'rspec-activemodel-mocks' gem to your gemfile and then re-run 'bundle install'.

*Edit: this goes in your :development, :test group in the gemfile.

gem 'rspec-activemodel-mocks', '~> 1.0.2'

I'm disappointed that treehouse keeps such outdated videos in their library and don't answer questions promptly.