(self)
| 356 | url_obj.query["foo"] = "hoho" |
| 357 | |
| 358 | def test_create_engine_url_invalid(self): |
| 359 | with expect_raises_message( |
| 360 | exc.ArgumentError, |
| 361 | "Expected string or URL object, got 42", |
| 362 | ): |
| 363 | create_engine(42) |
| 364 | |
| 365 | @testing.combinations( |
| 366 | ( |
nothing calls this directly
no test coverage detected