Codebase list ohcount / scrub-obsolete/main test / unit / parsers / test_make.h
scrub-obsolete/main

Tree @scrub-obsolete/main (Download .tar.gz)

test_make.h @scrub-obsolete/mainraw · history · blame

void test_make_comment_entities() {
  test_parser_verify_entity(
    test_parser_sourcefile("make", " #comment"),
    "comment", "#comment"
  );
}

void all_make_tests() {
  test_make_comment_entities();
}