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 trialJonathan Kennedy
Courses Plus Student 1,077 Pointscan someone break this test down for me? thanks
test "a status content should have more than 2 characters" do status = Status.new status.content = "H" assert !status.save assert !status.errors[:content].empty? end
hi, why do we add
assert !status.errors[:content].empty?
im a bit confused with this line because arent we testing 2 or more characters and not an empty status?
1 Answer
Brandon Barrette
20,485 PointsThe "!" means "not" so here we are asserting that the errors for status are not empty (meaning we have errors). Which we should expect to happen since our status in only 1 character long, the "H" you set it to (in status = Status.new status.content = "H")