(cls, want)
| 1478 | eq_(have, want) |
| 1479 | |
| 1480 | def assert_instrumented(cls, want): |
| 1481 | have = {p.key for p in class_mapper(cls).iterate_properties} |
| 1482 | want = set(want) |
| 1483 | eq_(have, want) |
| 1484 | |
| 1485 | assert_props( |
| 1486 | HasDef, |
nothing calls this directly
no test coverage detected