(self)
| 166 | self.assertHaskey(dict, name, ignore) |
| 167 | |
| 168 | def test_easy(self): |
| 169 | self.checkModule('pyclbr') |
| 170 | # XXX: Metaclasses are not supported |
| 171 | # self.checkModule('ast') |
| 172 | with temporary_main_spec(): |
| 173 | self.checkModule('doctest', ignore=("TestResults", "_SpoofOut", |
| 174 | "DocTestCase", '_DocTestSuite')) |
| 175 | self.checkModule('difflib', ignore=("Match",)) |
| 176 | |
| 177 | def test_cases(self): |
| 178 | # see test.pyclbr_input for the rationale behind the ignored symbols |
nothing calls this directly
no test coverage detected