(self)
| 2656 | self._test_class_guards(Unmapped) |
| 2657 | |
| 2658 | def test_unmapped_primitives(self): |
| 2659 | for prim in ("doh", 123, ("t", "u", "p", "l", "e")): |
| 2660 | self._test_instance_guards(prim) |
| 2661 | self._test_class_guards(prim, is_class=False) |
| 2662 | |
| 2663 | def test_unmapped_class_for_instance(self): |
| 2664 | class Unmapped: |
nothing calls this directly
no test coverage detected