(self)
| 3868 | assert not q._compile_state()._has_mapper_entities |
| 3869 | |
| 3870 | def test_cols_set_entities(self): |
| 3871 | User = self.classes.User |
| 3872 | s = fixture_session() |
| 3873 | |
| 3874 | q = s.query(User.id) |
| 3875 | |
| 3876 | q._set_entities(User) |
| 3877 | assert q._compile_state()._has_mapper_entities |
| 3878 | |
| 3879 | def test_entity_set_entities(self): |
| 3880 | User = self.classes.User |
nothing calls this directly
no test coverage detected