Merge pull request #41 from blackducksw/ubuntu_14
[ohcount] / test / unit / parsers / test_ebuild.h
1
2 void test_ebuild_comment_entities() {
3   test_parser_verify_entity(
4     test_parser_sourcefile("ebuild", " #comment"),
5     "comment", "#comment"
6   );
7 }
8
9 void all_ebuild_tests() {
10   test_ebuild_comment_entities();
11 }