(self)
| 217 | "Tests the use of 'text' to get all of string content from the tag." |
| 218 | |
| 219 | def testText(self): |
| 220 | soup = BeautifulSoup("<ul><li>spam</li><li>eggs</li><li>cheese</li>") |
| 221 | self.assertEquals(soup.ul.text, "spameggscheese") |
| 222 | self.assertEquals(soup.ul.getText('/'), "spam/eggs/cheese") |
| 223 | |
| 224 | class ThatsMyLimit(SoupTest): |
| 225 | "Tests the limit argument." |
nothing calls this directly
no test coverage detected