Merge pull request #41 from blackducksw/ubuntu_14
[ohcount] / test / unit / parsers / test_nix.h
1
2 void test_nix_line_comments() {
3   test_parser_verify_parse(
4     test_parser_sourcefile("nix", "# comment"),
5     "nix", "", "# comment", 0
6   );
7 }
8
9 void all_nix_tests() {
10   test_nix_line_comments();
11 }