# File lib/yadis/htmltokenizer.rb, line 317 def test_comment toke = HTMLTokenizer.new("<!-- comment on me -->") t = toke.getNextToken assert(HTMLComment == t.class) assert("comment on me" == t.contents) end