(self)
| 111 | ) |
| 112 | |
| 113 | def test_bundles_in_annotations(self): |
| 114 | User = self.classes.User |
| 115 | |
| 116 | self._run_cache_key_fixture( |
| 117 | lambda: ( |
| 118 | Bundle("mybundle", User.id).__clause_element__(), |
| 119 | Bundle("myotherbundle", User.id).__clause_element__(), |
| 120 | Bundle("mybundle", User.name).__clause_element__(), |
| 121 | Bundle("mybundle", User.id, User.name).__clause_element__(), |
| 122 | ), |
| 123 | compare_values=True, |
| 124 | ) |
| 125 | |
| 126 | def test_bundles_directly(self): |
| 127 | User = self.classes.User |
nothing calls this directly
no test coverage detected