aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2016-04-11 19:37:21 -0400
committerWaylan Limberg <waylan.limberg@icloud.com>2016-04-11 19:37:21 -0400
commit39655907c8f68440e3895495b3ef7f23d169a73d (patch)
tree9a29ef926df6c49ba06cb66a0bc1fc3e39c2cfdf /tests
parentfcd4951af0fc4701a87f94925ea726625205a0ad (diff)
parent4d96f00fd3e4945b5c18d53ea81868bee5486c98 (diff)
downloadmarkdown-39655907c8f68440e3895495b3ef7f23d169a73d.tar.gz
markdown-39655907c8f68440e3895495b3ef7f23d169a73d.tar.bz2
markdown-39655907c8f68440e3895495b3ef7f23d169a73d.zip
Merge branch 'master' of https://github.com/waylan/Python-Markdown
Diffstat (limited to 'tests')
-rw-r--r--tests/test_extensions.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/test_extensions.py b/tests/test_extensions.py
index 19a1389..a43de79 100644
--- a/tests/test_extensions.py
+++ b/tests/test_extensions.py
@@ -375,6 +375,18 @@ line 3
'#line 3</code></pre>'
)
+ def testFencedLanguageAndPygmentsDisabled(self):
+ """ Test if fenced_code honors CodeHilite option use_pygments=False. """
+
+ text = '```python\nfrom __future__ import braces\n```'
+ md = markdown.Markdown(
+ extensions=[
+ markdown.extensions.codehilite.CodeHiliteExtension(use_pygments=False),
+ 'markdown.extensions.fenced_code'
+ ]
+ )
+ self.assertTrue('<code class="language-python">' in md.convert(text))
+
class TestHeaderId(unittest.TestCase):
""" Test HeaderId Extension. """