(self)
| 210 | is_(prop._parententity, inspect(ua)) |
| 211 | |
| 212 | def test_insp_column_prop(self): |
| 213 | User = self.classes.User |
| 214 | prop = inspect(User.name) |
| 215 | is_(prop, User.name) |
| 216 | |
| 217 | is_(prop.parent, class_mapper(User)) |
| 218 | assert not hasattr(prop, "mapper") |
| 219 | |
| 220 | def test_insp_aliased_column_prop(self): |
| 221 | User = self.classes.User |
nothing calls this directly
no test coverage detected