(self)
| 1619 | self.assertEqual(soup.encode(), b"<!DOCTYPE foo>\n") |
| 1620 | |
| 1621 | def test_declaration(self): |
| 1622 | d = Declaration("foo") |
| 1623 | self.assertEqual("<?foo?>", d.output_ready()) |
| 1624 | |
| 1625 | class TestSoupSelector(TreeTest): |
| 1626 |
nothing calls this directly
no test coverage detected