(self)
| 3190 | ) |
| 3191 | |
| 3192 | def test_scalar_values(self): |
| 3193 | t = self.table1 |
| 3194 | expr = values(t.c.myid).data([(7,), (42,)]).scalar_values() |
| 3195 | self.assert_compile( |
| 3196 | not_(expr), |
| 3197 | "NOT (VALUES (:param_1), (:param_2))", |
| 3198 | params={"param_1": 7, "param_2": 42}, |
| 3199 | ) |
| 3200 | |
| 3201 | |
| 3202 | class LikeTest(fixtures.TestBase, testing.AssertsCompiledSQL): |
nothing calls this directly
no test coverage detected