(self)
| 523 | self.assertEqual(A.test_cm(), "cm") |
| 524 | |
| 525 | def test_method_descriptors(self): |
| 526 | f = pickle_depickle(str.upper) |
| 527 | self.assertEqual(f("abc"), "ABC") |
| 528 | |
| 529 | def test_instancemethods_without_self(self): |
| 530 | class F: |
nothing calls this directly
no test coverage detected