(self)
| 484 | "Test attribute access" |
| 485 | |
| 486 | def testHasKey(self): |
| 487 | text = "<foo attr='bar'>" |
| 488 | self.assertEquals(BeautifulSoup(text).foo.has_key('attr'), True) |
| 489 | |
| 490 | class QuoteMeOnThat(SoupTest): |
| 491 | "Test quoting" |
nothing calls this directly
no test coverage detected