(self)
| 3321 | ) |
| 3322 | |
| 3323 | def test_between_6(self): |
| 3324 | self.assert_compile( |
| 3325 | ~between(self.table1.c.myid, 1, 2, symmetric=True), |
| 3326 | "mytable.myid NOT BETWEEN SYMMETRIC :myid_1 AND :myid_2", |
| 3327 | ) |
| 3328 | |
| 3329 | |
| 3330 | class MatchTest(fixtures.TestBase, testing.AssertsCompiledSQL): |
nothing calls this directly
no test coverage detected