2 void test_ruby_comments() {
3 test_parser_verify_parse(
4 test_parser_sourcefile("ruby", " #comment"),
5 "ruby", "", "#comment", 0
9 void test_ruby_comment_entities() {
10 test_parser_verify_entity(
11 test_parser_sourcefile("ruby", " #comment"),
14 test_parser_verify_entity(
15 test_parser_sourcefile("ruby", "=begin\ncomment\n=end"),
16 "comment", "=begin\ncomment\n=end"
20 void all_ruby_tests() {
22 test_ruby_comment_entities();