(self)
| 272 | self.assertEqual('self', first) |
| 273 | |
| 274 | def test_field_named_object(self): |
| 275 | @dataclass |
| 276 | class C: |
| 277 | object: str |
| 278 | c = C('foo') |
| 279 | self.assertEqual(c.object, 'foo') |
| 280 | |
| 281 | def test_field_named_object_frozen(self): |
| 282 | @dataclass(frozen=True) |
nothing calls this directly
no test coverage detected