(self)
| 568 | |
| 569 | class FinderTest(_ExtBase, fixtures.ORMTest): |
| 570 | def test_standard(self): |
| 571 | class A: |
| 572 | pass |
| 573 | |
| 574 | register_class(A) |
| 575 | |
| 576 | eq_(type(manager_of_class(A)), instrumentation.ClassManager) |
| 577 | |
| 578 | def test_nativeext_interfaceexact(self): |
| 579 | class A: |
nothing calls this directly
no test coverage detected