summaryrefslogtreecommitdiff
path: root/tests/Tests/Writers
diff options
context:
space:
mode:
authorJesse Rosenthal <jrosenthal@jhu.edu>2016-09-19 16:34:28 -0400
committerJesse Rosenthal <jrosenthal@jhu.edu>2016-09-19 16:34:28 -0400
commit9c1467e848bd7d9d45e0813716c3a4aef1964503 (patch)
treefba1c11b08d3865e36e5546029a4063d42bf144f /tests/Tests/Writers
parent5b5f55a710f0d1187cf3c859ff5c422bcb6b9619 (diff)
Add test for backtick in verbatim.
Diffstat (limited to 'tests/Tests/Writers')
-rw-r--r--tests/Tests/Writers/LaTeX.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/Tests/Writers/LaTeX.hs b/tests/Tests/Writers/LaTeX.hs
index 4a1232db2..afab7d628 100644
--- a/tests/Tests/Writers/LaTeX.hs
+++ b/tests/Tests/Writers/LaTeX.hs
@@ -75,5 +75,7 @@ tests = [ testGroup "code blocks"
"\\sout{\\texttt{foo} bar}"
, "single quotes" =:
code "dog's" =?> "\\texttt{dog\\textquotesingle{}s}"
+ , "backtick" =:
+ code "`nu?`" =?> "\\texttt{{`}nu?{`}}"
]
]