From 1ee2d721533c9185514d504d6f2c29508841a860 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Tue, 2 Jan 2018 00:56:52 +0000 Subject: tests: Remove TestTextWrapParagraphs. * tests/data/paragraphs-with-inline-wrapped.md: Remove file. * tests/data/paragraphs-with-inline.md: Remove file. * tests/data/paragraphs-wrapped.md: Remove file. * tests/data/paragraphs.md: Remove file. * tests/test_md_tw.py (TestTextWrapParagraphs): Remove test class. --- tests/test_md_tw.py | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'tests/test_md_tw.py') 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 -- cgit v1.2.3