(self)
| 3421 | ) |
| 3422 | |
| 3423 | def test_regexp_replace(self): |
| 3424 | assert_raises_message( |
| 3425 | exc.CompileError, |
| 3426 | "default dialect does not support regular expression replacements", |
| 3427 | self.table.c.myid.regexp_replace("pattern", "rep").compile, |
| 3428 | dialect=default.DefaultDialect(), |
| 3429 | ) |
| 3430 | |
| 3431 | |
| 3432 | class RegexpTestStrCompiler(fixtures.TestBase, testing.AssertsCompiledSQL): |
nothing calls this directly
no test coverage detected