diff options
author | Waylan Limberg <waylan@gmail.com> | 2011-10-06 09:32:30 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2011-10-06 09:32:30 -0400 |
commit | 3f9bd5dc35e85907247e78c5c7c6c45a39be0955 (patch) | |
tree | 8a467bbc28ba3c50eca2a21f833679319d3ce2ca /tests | |
parent | c0a7a4b0b034a90fd76e34ec8533c98a60afe888 (diff) | |
download | markdown-3f9bd5dc35e85907247e78c5c7c6c45a39be0955.tar.gz markdown-3f9bd5dc35e85907247e78c5c7c6c45a39be0955.tar.bz2 markdown-3f9bd5dc35e85907247e78c5c7c6c45a39be0955.zip |
No longer skipping all tests from PHP test suite. We skip some because PHP differs from markdown.pl and we match markdown.pl. A few others are skipped because we have to adjust for a few edge cases. See comments in tests/php/test.cfg for details.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/php/test.cfg | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/tests/php/test.cfg b/tests/php/test.cfg index eb79750..5d1dd50 100644 --- a/tests/php/test.cfg +++ b/tests/php/test.cfg @@ -2,8 +2,45 @@ normalize=1 input_ext=.text output_ext=.xhtml -skip=1 +#skip=1 [Quotes in attributes] # attributes get output in differant order skip=1 + +[Inline HTML (Span)] +# Backtick in raw HTML attribute TODO: fixme +skip=1 + +[Backslash escapes] +# Weird whitespace issue in output +skip=1 + +[Ins & del] +# Our behavior follows markdown.pl I think PHP is wrong here +skip=1 + +[Auto Links] +# TODO: fix raw HTML so is doesn't match <hr@example.com> as a <hr>. +skip=1 + +[Empty List Item] +# We match markdown.pl here. Maybe someday we'll support this +skip=1 + +[Headers] +# TODO: fix headers to not require blank line before +skip=1 + +[Mixed OLs and ULs] +# We match markdown.pl here. I think PHP is wrong here +skip=1 + +[Emphasis] +# We have various minor differances in combined & incorrect em markup. +# Maybe fix a few of them - but most aren't too important +skip=1 + +[Code block in a list item] +# We match markdown.pl - not sure how php gets that output?? +skip=1 |