(self)
| 124 | ) |
| 125 | |
| 126 | def test_bundles_directly(self): |
| 127 | User = self.classes.User |
| 128 | |
| 129 | self._run_cache_key_fixture( |
| 130 | lambda: ( |
| 131 | Bundle("mybundle", User.id), |
| 132 | Bundle("mybundle", User.id).__clause_element__(), |
| 133 | Bundle("myotherbundle", User.id), |
| 134 | Bundle("mybundle", User.name), |
| 135 | Bundle("mybundle", User.id, User.name), |
| 136 | ), |
| 137 | compare_values=True, |
| 138 | ) |
| 139 | |
| 140 | def test_query_expr(self): |
| 141 | (User,) = self.classes("User") |
nothing calls this directly
no test coverage detected