Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Master Mind
4,826 PointsI'm getting a syntax error with the identical code.
1) Viewing todo items displays no items when a todo list is empty
Failure/Error: let!(:todo_list) { TodoList.create(title: "Groceries", description: "Grocery list.") }
SyntaxError:
/Users/Projects/odot/app/models/todo_list.rb:9: syntax error, unexpected keyword_end, expecting end-of-input
# ./spec/features/todo_items/index_spec.rb:4:in `block (2 levels) in <top (required)>'
require 'spec_helper'
describe "Viewing todo items" do
let!(:todo_list) { TodoList.create(title: "Groceries", description: "Grocery list") }
it "displays no items when a todo list is empty" do
visit "/todo_lists"
within "#todo_list_#{todo_list.id}" do
click_link "List Items"
end
expect(page).to have_content("TodoItems#index")
end
end

Daniel Cunningham
21,109 Points/Users/Projects/odot/app/models/todo_list.rb:9: syntax error, unexpected keyword_end, expecting end-of-input
Show us the code in that file.
We are only seeing the code in "/spec/features/todo_items/index_spec.rb:4"

Master Mind
4,826 Pointscclclass TodoList < ActiveRecord::Base
has_many :todo_items
validates :title, presence: true
validates :title, length: { minimum: 3 }
validates :description, presence: true
validates :description, length: { minimum: 5 }
end
1 Answer

Master Mind
4,826 PointsI fixed it, I had 'class' misspelled. Thanks you guys just showed me what to look for in an error message.

Daniel Cunningham
21,109 PointsWell done! Good luck!
Geoff Parsons
11,667 PointsGeoff Parsons
11,667 PointsCan you post what's in
app/models/todo_list.rb
, looks like there's a syntax error around line 9.