(self)
| 1228 | ) |
| 1229 | |
| 1230 | def test_aliased_expression(self): |
| 1231 | A = self._fixture() |
| 1232 | self.assert_compile( |
| 1233 | aliased(A).value(5), "foo(a_1.value, :foo_1) + :foo_2" |
| 1234 | ) |
| 1235 | |
| 1236 | def test_query(self): |
| 1237 | A = self._fixture() |
nothing calls this directly
no test coverage detected