(self)
| 2677 | # no class guards- it would pass. |
| 2678 | |
| 2679 | def test_missing_state(self): |
| 2680 | class Mapped: |
| 2681 | pass |
| 2682 | |
| 2683 | early = Mapped() |
| 2684 | self._map_it(Mapped) |
| 2685 | |
| 2686 | self._test_instance_guards(early) |
| 2687 | self._test_class_guards(early, is_class=False) |
| 2688 | |
| 2689 | def test_refresh_arg_signature(self): |
| 2690 | class Mapped: |
nothing calls this directly
no test coverage detected