diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-06-19 22:47:32 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-06-19 22:47:32 -0700 |
commit | 0d8e0e567479e723c986b2384c39a997f9065fa2 (patch) | |
tree | cb1a367c616c275a1dae941ceafc9ec6a5d0b29b /tests/Tests | |
parent | 5cb53a48d541b97b5f60968715a5969133196d70 (diff) | |
parent | da0d1d27ac98ca28e66bc2df3de2bce738068fb8 (diff) | |
download | pandoc-0d8e0e567479e723c986b2384c39a997f9065fa2.tar.gz |
Merge pull request #1354 from jkr/literalTab
Parse literal tabs in docx
Diffstat (limited to 'tests/Tests')
-rw-r--r-- | tests/Tests/Readers/Docx.hs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/Tests/Readers/Docx.hs b/tests/Tests/Readers/Docx.hs index 273f03f4d..3a13641a9 100644 --- a/tests/Tests/Readers/Docx.hs +++ b/tests/Tests/Readers/Docx.hs @@ -44,7 +44,12 @@ tests = [ testGroup "inlines" , testCompare "handling unicode input" "docx.unicode.docx" - "docx.unicode.native"] + "docx.unicode.native" + , testCompare + "literal tabs" + "docx.tabs.docx" + "docx.tabs.native" + ] , testGroup "blocks" [ testCompare "headers" |