(self, expand_update, keytype)
| 1846 | |
| 1847 | @testing.variation("keytype", ["attr", "string"]) |
| 1848 | def test_expand_update_insert_values(self, expand_update, keytype): |
| 1849 | A = expand_update |
| 1850 | self.assert_compile( |
| 1851 | insert(A).values({"xy" if keytype.string else A.xy: Point(5, 6)}), |
| 1852 | "INSERT INTO a (x, y) VALUES (:x, :y)", |
| 1853 | checkparams={"x": 5, "y": 6}, |
| 1854 | ) |
| 1855 | |
| 1856 | @testing.variation("keytype", ["attr", "string"]) |
| 1857 | def test_expand_update_update_values(self, expand_update, keytype): |
nothing calls this directly
no test coverage detected