(self)
| 3130 | ) |
| 3131 | |
| 3132 | def test_between_6(self): |
| 3133 | self.assert_compile( |
| 3134 | ~between(self.table1.c.myid, 1, 2, symmetric=True), |
| 3135 | "mytable.myid NOT BETWEEN SYMMETRIC :myid_1 AND :myid_2", |
| 3136 | ) |
| 3137 | |
| 3138 | |
| 3139 | class MatchTest(fixtures.TestBase, testing.AssertsCompiledSQL): |
nothing calls this directly
no test coverage detected