diff options
| author | SavagePeanut <sourcehut@lazytapir.com> | 2023-08-02 17:48:03 -0500 |
|---|---|---|
| committer | SavagePeanut <sourcehut@lazytapir.com> | 2023-08-02 17:48:03 -0500 |
| commit | df8aaf093dcda522723d1320d4bfd95923236881 (patch) | |
| tree | 240d60827c1bad3cfb151ce4843f0b522a2e39e8 | |
| parent | 67d9d975d717649e3c9bd1c194e62e5f54920f15 (diff) | |
remove dead test
| -rw-r--r-- | tests/test_style_parser.py | 20 |
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>" |
