Skip to content

Commit 2d8ce54

Browse files
committed
Ensure extension doesn't break default behavior.
1 parent f61eb28 commit 2d8ce54

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/test_syntax/extensions/test_md_in_html.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,13 @@
2121
"""
2222

2323
from markdown.test_tools import TestCase
24+
from ..blocks.test_html_blocks import TestHTMLBlocks
25+
26+
27+
class TestDefaultwMdInHTML(TestHTMLBlocks):
28+
""" Ensure the md_in_html extension does not break the default behavior. """
29+
30+
default_kwargs = {'extensions': ['md_in_html']}
2431

2532

2633
class TestMdInHTML(TestCase):

0 commit comments

Comments
 (0)