(self)
| 2649 | Session(join_transaction_mode="bogus") |
| 2650 | |
| 2651 | def test_unmapped_instance(self): |
| 2652 | class Unmapped: |
| 2653 | pass |
| 2654 | |
| 2655 | self._test_instance_guards(Unmapped()) |
| 2656 | self._test_class_guards(Unmapped) |
| 2657 | |
| 2658 | def test_unmapped_primitives(self): |
| 2659 | for prim in ("doh", 123, ("t", "u", "p", "l", "e")): |
nothing calls this directly
no test coverage detected