summaryrefslogtreecommitdiff
path: root/tests/test_style_parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_style_parser.py')
-rw-r--r--tests/test_style_parser.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/test_style_parser.py b/tests/test_style_parser.py
index fd02597..d873644 100644
--- a/tests/test_style_parser.py
+++ b/tests/test_style_parser.py
@@ -85,26 +85,6 @@ def test_quotes():
formatted_body = "<blockquote><blockquote><blockquote>tripple</blockquote></blockquote>\nsingle\n<blockquote>double</blockquote></blockquote>"
assert(format_body(test, MATRIX_FORMATS) == formatted_body)
-CODE_BLOCK_TEST_CASE = \
-"""
-Code test
-```python3
-def who_is_awesome():
- return "you!"
-```
-Nope
-"""
-
-CODE_BLOCK_TEST_CASE_OUTPUT = \
-"""
-Code test
-<pre><code>
-def who_is_awesome():
- return \"you!\"
-</code></pre>
-Nope
-"""
-
def test_code_blocks():
test = "```\nhacker\ncode\n```"
formatted_body = "<pre><code>hacker\ncode</code></pre>"