(self)
| 2274 | # no class guards- it would pass. |
| 2275 | |
| 2276 | def test_missing_state(self): |
| 2277 | class Mapped: |
| 2278 | pass |
| 2279 | |
| 2280 | early = Mapped() |
| 2281 | self._map_it(Mapped) |
| 2282 | |
| 2283 | self._test_instance_guards(early) |
| 2284 | self._test_class_guards(early, is_class=False) |
| 2285 | |
| 2286 | def test_refresh_arg_signature(self): |
| 2287 | class Mapped: |
nothing calls this directly
no test coverage detected