(
self, test_case, expected, bindparams, expected_params
)
| 938 | ), |
| 939 | ) |
| 940 | def test_params_with_join( |
| 941 | self, test_case, expected, bindparams, expected_params |
| 942 | ): |
| 943 | User, Address = self.classes("User", "Address") |
| 944 | |
| 945 | stmt = resolve_lambda(test_case, **locals()) |
| 946 | |
| 947 | stmt = stmt.params(**bindparams) |
| 948 | |
| 949 | self.assert_compile(stmt, expected, checkparams=expected_params) |
| 950 | |
| 951 | @testing.fixture |
| 952 | def grandchild_fixture(self, decl_base): |
nothing calls this directly
no test coverage detected