(self)
| 295 | '<p>I said "good day!"</p>') |
| 296 | |
| 297 | def test_out_of_range_entity(self): |
| 298 | expect = "\N{REPLACEMENT CHARACTER}" |
| 299 | self.assertSoupEquals("�", expect) |
| 300 | self.assertSoupEquals("�", expect) |
| 301 | self.assertSoupEquals("�", expect) |
| 302 | |
| 303 | def test_multipart_strings(self): |
| 304 | "Mostly to prevent a recurrence of a bug in the html5lib treebuilder." |
nothing calls this directly
no test coverage detected