(self)
| 476 | self.assertEqual(three.previousSibling, soup.a) |
| 477 | |
| 478 | def testClear(self): |
| 479 | soup = BeautifulSoup("<ul><li></li><li></li></ul>") |
| 480 | soup.ul.clear() |
| 481 | self.assertEqual(len(soup.ul.contents), 0) |
| 482 | |
| 483 | class TheManWithoutAttributes(SoupTest): |
| 484 | "Test attribute access" |
nothing calls this directly
no test coverage detected