(self)
| 588 | ) |
| 589 | |
| 590 | def test_nativeext_submanager(self): |
| 591 | class Mine(instrumentation.ClassManager): |
| 592 | pass |
| 593 | |
| 594 | class A: |
| 595 | __sa_instrumentation_manager__ = Mine |
| 596 | |
| 597 | register_class(A) |
| 598 | eq_(type(manager_of_class(A)), Mine) |
| 599 | |
| 600 | @modifies_instrumentation_finders |
| 601 | def test_customfinder_greedy(self): |
nothing calls this directly
no test coverage detected