summaryrefslogtreecommitdiffstats
path: root/tests/test_md_tw.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_md_tw.py')
-rw-r--r--tests/test_md_tw.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test_md_tw.py b/tests/test_md_tw.py
index 2496f43..032ef93 100644
--- a/tests/test_md_tw.py
+++ b/tests/test_md_tw.py
@@ -58,6 +58,16 @@ class TestTWBlockLexer(object):
]
self._validate(tokens, 'code', expected_bc)
+ def test_parse_fences(self):
+ tokens = self._parse('blexer-fences.md')
+
+ expected_fences = [
+ '```bash\n$ echo \'Zap!\'\n$ rm -rf /\n```\n',
+ '```bash\n$ :(){:|:&};:\n```\n'
+ ]
+
+ self._validate(tokens, 'code', expected_fences)
+
def teardown(self):
pass