desc "A user's comment" do def user @user ||= User.create! name: "John" end def comment @comment ||= user.comments.create! end it "delegates to user's name" do comment.name.should eq(user.name) end end