diff options
author | Jesse Rosenthal <jrosenthal@jhu.edu> | 2014-06-24 10:33:49 -0400 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2014-06-24 10:33:49 -0400 |
commit | 21295c5ab5567126c3112b9417f68c76b4f6debf (patch) | |
tree | b045b47ab9a41a4b9f250b7850e49c266c81c4e8 /tests/Tests | |
parent | fc4e6b313554812ac88c935756b65cb864d20c20 (diff) | |
download | pandoc-21295c5ab5567126c3112b9417f68c76b4f6debf.tar.gz |
Docx reader: add failing tests for inline code and code blocks.
Diffstat (limited to 'tests/Tests')
-rw-r--r-- | tests/Tests/Readers/Docx.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/Tests/Readers/Docx.hs b/tests/Tests/Readers/Docx.hs index a42dc31e9..c49bee14e 100644 --- a/tests/Tests/Readers/Docx.hs +++ b/tests/Tests/Readers/Docx.hs @@ -86,6 +86,10 @@ tests = [ testGroup "inlines" "move trailing spaces outside of formatting" "docx.trailing_spaces_in_formatting.docx" "docx.trailing_spaces_in_formatting.native" + , testCompare + "inline code (with VerbatimChar style)" + "docx.inline_code.docx" + "docx.inline_code.native" ] , testGroup "blocks" [ testCompare @@ -108,6 +112,11 @@ tests = [ testGroup "inlines" "tables" "docx.tables.docx" "docx.tables.native" + , testCompare + "code block" + "docx.codeblock.docx" + "docx.codeblock.native" + ] ] |