(self)
| 202 | self.assertEquals(s.b.string, 'foo') |
| 203 | |
| 204 | def testLackOfString(self): |
| 205 | s = BeautifulSoup("<b>f<i>e</i>o</b>") |
| 206 | self.assert_(not s.b.string) |
| 207 | |
| 208 | def testStringAssign(self): |
| 209 | s = BeautifulSoup("<b></b>") |
nothing calls this directly
no test coverage detected