コード例 #1
0
 def test_none(self):
     self.assertEqual(html2text(None), None)
コード例 #2
0
 def test_text_only(self):
     self.assertEqual(html2text("foo"), "foo")
コード例 #3
0
 def test_invalid_tags(self):
     self.assertEqual(html2text("<foo>the text</bar>"), "the text")
コード例 #4
0
 def test_empty(self):
     self.assertEqual(html2text(""), "")
コード例 #5
0
 def test_invalid_tags(self):
     assert_pformat_equal(html2text("<foo>the text</bar>"), "the text")
コード例 #6
0
 def test_text_only(self):
     assert_pformat_equal(html2text("foo"), "foo")
コード例 #7
0
 def test_empty(self):
     assert_pformat_equal(html2text(""), "")
コード例 #8
0
 def test_none(self):
     assert_pformat_equal(html2text(None), None)