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.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/test_md_tw.py b/tests/test_md_tw.py
index 4d8d352..1a38b48 100644
--- a/tests/test_md_tw.py
+++ b/tests/test_md_tw.py
@@ -677,30 +677,3 @@ class TestTWMarkdown(object):
def teardown(self):
pass
-
-
-class TestTextWrapParagraphs(object):
-
- def setup(self):
- self.md = TWMarkdown()
-
-
- def test_tw_plain_paragraphs(self):
- txt = _get_data('paragraphs.md')
- expected_wrapped_txt = _get_data('paragraphs-wrapped.md')
-
- wrapped_txt = self.md(txt)
- assert_equal(wrapped_txt, expected_wrapped_txt)
-
-
- def test_tw_paragraphs_with_inline(self):
- txt = _get_data('paragraphs-with-inline.md')
- expected_wrapped_txt = _get_data(
- 'paragraphs-with-inline-wrapped.md')
-
- wrapped_txt = self.md(txt)
- assert_equal(wrapped_txt, expected_wrapped_txt)
-
-
- def teardown(self):
- pass