Fixes recursion bug in disambiguate_in().
[ohcount] / test / unit / parsers / test_clojure.h
1
2 void test_clojure_comments() {
3   test_parser_verify_parse(
4     test_parser_sourcefile("clojure", " ;;; comment"),
5     "clojure", "", ";;; comment", 0
6   );
7 }
8
9 void test_clojure_comment_entities() {
10   test_parser_verify_entity(
11     test_parser_sourcefile("clojure", " ;comment"),
12     "comment", ";comment"
13   );
14 }
15
16 void all_clojure_tests() {
17   test_clojure_comments();
18   test_clojure_comment_entities();
19 }