(self)
| 131 | ) |
| 132 | |
| 133 | def test_property(self): |
| 134 | User = self.classes.User |
| 135 | insp = inspect(User) |
| 136 | is_(insp.attrs.id, class_mapper(User).get_property("id")) |
| 137 | |
| 138 | def test_with_polymorphic(self): |
| 139 | User = self.classes.User |
nothing calls this directly
no test coverage detected