(self)
| 2999 | ) |
| 3000 | |
| 3001 | def test_scalar_values(self): |
| 3002 | t = self.table1 |
| 3003 | expr = values(t.c.myid).data([(7,), (42,)]).scalar_values() |
| 3004 | self.assert_compile( |
| 3005 | not_(expr), |
| 3006 | "NOT (VALUES (:param_1), (:param_2))", |
| 3007 | params={"param_1": 7, "param_2": 42}, |
| 3008 | ) |
| 3009 | |
| 3010 | |
| 3011 | class LikeTest(fixtures.TestBase, testing.AssertsCompiledSQL): |
nothing calls this directly
no test coverage detected