(self)
| 614 | |
| 615 | @modifies_instrumentation_finders |
| 616 | def test_customfinder_pass(self): |
| 617 | class A: |
| 618 | pass |
| 619 | |
| 620 | def find(cls): |
| 621 | return None |
| 622 | |
| 623 | instrumentation.instrumentation_finders.insert(0, find) |
| 624 | register_class(A) |
| 625 | |
| 626 | eq_(type(manager_of_class(A)), instrumentation.ClassManager) |
| 627 | |
| 628 | |
| 629 | class InstrumentationCollisionTest(_ExtBase, fixtures.ORMTest): |
nothing calls this directly
no test coverage detected