(self)
| 80 | self.assertEqual(len(matching), 4) |
| 81 | |
| 82 | def testFindAllText(self): |
| 83 | soup = BeautifulSoup("<html>\xbb</html>") |
| 84 | self.assertEqual(soup.findAll(text=re.compile('.*')), |
| 85 | [u'\xbb']) |
| 86 | |
| 87 | def testFindAllByRE(self): |
| 88 | import re |
nothing calls this directly
no test coverage detected