diff options
author | rsiddharth <s@ricketyspace.net> | 2018-01-02 00:56:52 +0000 |
---|---|---|
committer | rsiddharth <s@ricketyspace.net> | 2018-01-02 00:56:52 +0000 |
commit | 1ee2d721533c9185514d504d6f2c29508841a860 (patch) | |
tree | 6545ffbda9812450b4e45a4500bf3270dfceff18 /tests/test_md_tw.py | |
parent | 1f4f81e22b37b8a265a6d0579ba2fda58125769f (diff) |
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.
Diffstat (limited to 'tests/test_md_tw.py')
-rw-r--r-- | tests/test_md_tw.py | 27 |
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 |