Codebase list ohcount / upstream/latest test / unit / parsers / test_rebol.h
upstream/latest

Tree @upstream/latest (Download .tar.gz)

test_rebol.h @upstream/latest

8e3aae6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
void test_rebol_comments() {
  test_parser_verify_parse(
    test_parser_sourcefile("rebol", "REBOL []\n;comment"),
    "rebol", "REBOL []\n", ";comment", 0
  );
  test_parser_verify_parse(
    test_parser_sourcefile("rebol", "{}"),
    "rebol", "{}", "", 0
  );
  test_parser_verify_parse(
    test_parser_sourcefile("rebol", "{{}}"),
    "rebol", "{{}}", "", 0
  );
  test_parser_verify_parse(
    test_parser_sourcefile("rebol", "{{\n}}"),
    "rebol", "{{\n}}", "", 0
  );
  test_parser_verify_parse(
    test_parser_sourcefile("rebol", "{\n;inside string\n}"),
    "rebol", "{\n;inside string\n}", "", 0
  );
  test_parser_verify_parse(
    test_parser_sourcefile("rebol", "{}\n;comment"),
    "rebol", "{}\n", ";comment", 0
  );
}

void test_rebol_comment_entities() {
  test_parser_verify_entity(
    test_parser_sourcefile("rebol", " ;comment"),
    "comment", ";comment"
  );
  test_parser_verify_entity(
    test_parser_sourcefile("rebol", " \";no comment\""),
    "string", "\";no comment\""
  );
}

void all_rebol_tests() {
  test_rebol_comments();
  test_rebol_comment_entities();
}