(self)
| 576 | eq_(type(manager_of_class(A)), instrumentation.ClassManager) |
| 577 | |
| 578 | def test_nativeext_interfaceexact(self): |
| 579 | class A: |
| 580 | __sa_instrumentation_manager__ = ( |
| 581 | instrumentation.InstrumentationManager |
| 582 | ) |
| 583 | |
| 584 | register_class(A) |
| 585 | ne_( |
| 586 | type(attributes.opt_manager_of_class(A)), |
| 587 | instrumentation.ClassManager, |
| 588 | ) |
| 589 | |
| 590 | def test_nativeext_submanager(self): |
| 591 | class Mine(instrumentation.ClassManager): |
nothing calls this directly
no test coverage detected