(self)
| 3197 | ) |
| 3198 | |
| 3199 | def test_boolean_inversion_mssql(self): |
| 3200 | # because mssql doesn't have native boolean |
| 3201 | self.assert_compile( |
| 3202 | ~self.table1.c.myid.match("somstr"), |
| 3203 | "NOT CONTAINS (mytable.myid, :myid_1)", |
| 3204 | dialect=mssql.dialect(), |
| 3205 | ) |
| 3206 | |
| 3207 | |
| 3208 | class RegexpTest(fixtures.TestBase, testing.AssertsCompiledSQL): |
nothing calls this directly
no test coverage detected