diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-11-04 01:28:52 -0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-11-04 01:28:52 -0200 |
commit | 37850db5081e26a26f05d062497811b864953778 (patch) | |
tree | 3b77ffdb176ce2f125142bf7242c8e3dcba9f90d /tests | |
parent | 0fe9ed29207c428deda6c960c81359113f1d3384 (diff) | |
download | blogc-37850db5081e26a26f05d062497811b864953778.tar.gz blogc-37850db5081e26a26f05d062497811b864953778.tar.bz2 blogc-37850db5081e26a26f05d062497811b864953778.zip |
Revert "content-parser: allow directive params with variable prefix"
This reverts commit d29c85ef1751cb46c579b3292f676605d9f86951.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/check_content_parser.c | 47 |
1 files changed, 5 insertions, 42 deletions
diff --git a/tests/check_content_parser.c b/tests/check_content_parser.c index dfb1ffb..8bd16ec 100644 --- a/tests/check_content_parser.c +++ b/tests/check_content_parser.c @@ -1129,7 +1129,7 @@ test_content_parse_directive(void **state) will_return(__wrap_blogc_directive_loader, "qwe"); html = blogc_content_parse( ".. bola::\r\n" - "\t:asd: qwe\r\n", + " :asd: qwe\r\n", NULL); assert_non_null(html); assert_string_equal(html, @@ -1145,8 +1145,8 @@ test_content_parse_directive(void **state) will_return(__wrap_blogc_directive_loader, "vbn"); html = blogc_content_parse( ".. bola::\n" - "\t\t:asd: qwe\n" - "\t\t:zxc: vbn", + " :asd: qwe\n" + " :zxc: vbn", NULL); assert_non_null(html); assert_string_equal(html, @@ -1162,8 +1162,8 @@ test_content_parse_directive(void **state) will_return(__wrap_blogc_directive_loader, "vbn"); html = blogc_content_parse( ".. bola::\n" - " :asd: qwe\n" - " :zxc: vbn\n", + " :asd: qwe\n" + " :zxc: vbn\n", NULL); assert_non_null(html); assert_string_equal(html, @@ -1412,43 +1412,6 @@ test_content_parse_directive(void **state) "CHUNDA\n" "<p>bola</p>\r\n"); free(html); - - will_return(__wrap_blogc_directive_loader, "bola"); - will_return(__wrap_blogc_directive_loader, "chunda"); - will_return(__wrap_blogc_directive_loader, 3); - will_return(__wrap_blogc_directive_loader, "asd"); - will_return(__wrap_blogc_directive_loader, "qwe"); - will_return(__wrap_blogc_directive_loader, "ert"); - will_return(__wrap_blogc_directive_loader, "zxvc"); - will_return(__wrap_blogc_directive_loader, "qwe"); - will_return(__wrap_blogc_directive_loader, "bola"); - will_return(__wrap_blogc_directive_loader, "bolao"); - will_return(__wrap_blogc_directive_loader, "chund"); - will_return(__wrap_blogc_directive_loader, 2); - will_return(__wrap_blogc_directive_loader, "asd"); - will_return(__wrap_blogc_directive_loader, "qwe"); - will_return(__wrap_blogc_directive_loader, "ert"); - will_return(__wrap_blogc_directive_loader, "zxvc"); - html = blogc_content_parse( - "# foo\r\n" - "\r\n" - ".. bola:: chunda\r\n" - " :asd: qwe\r\n" - " :ert: zxvc\r\n" - " :qwe: bola\r\n" - "\r\n" - ".. bolao:: chund\r\n" - " :asd: qwe\r\n" - " :ert: zxvc\r\n" - "\r\n" - "bola", NULL); - assert_non_null(html); - assert_string_equal(html, - "<h1 id=\"foo\">foo</h1>\r\n" - "CHUNDA\n" - "CHUNDA\n" - "<p>bola</p>\r\n"); - free(html); } |