(self)
| 3851 | |
| 3852 | class HasMapperEntitiesTest(QueryTest): |
| 3853 | def test_entity(self): |
| 3854 | User = self.classes.User |
| 3855 | s = fixture_session() |
| 3856 | |
| 3857 | q = s.query(User) |
| 3858 | |
| 3859 | assert q._compile_state()._has_mapper_entities |
| 3860 | |
| 3861 | def test_cols(self): |
| 3862 | User = self.classes.User |
nothing calls this directly
no test coverage detected