(self)
| 582 | # will be a string (either 8-byte or unicode -- again, because the docs |
| 583 | # just say "string") |
| 584 | def test_id(self): |
| 585 | class Foo(unittest.TestCase): |
| 586 | def runTest(self): |
| 587 | pass |
| 588 | |
| 589 | self.assertIsInstance(Foo().id(), str) |
| 590 | |
| 591 | |
| 592 | # "If result is omitted or None, a temporary result object is created, |
nothing calls this directly
no test coverage detected