summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSavagePeanut <sourcehut@lazytapir.com>2023-08-02 17:48:03 -0500
committerSavagePeanut <sourcehut@lazytapir.com>2023-08-02 17:48:03 -0500
commitdf8aaf093dcda522723d1320d4bfd95923236881 (patch)
tree240d60827c1bad3cfb151ce4843f0b522a2e39e8
parent67d9d975d717649e3c9bd1c194e62e5f54920f15 (diff)
remove dead test
-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>"