(self)
| 474 | ] |
| 475 | ) |
| 476 | def test_random_arg(self): |
| 477 | dialect = testing.db.dialect |
| 478 | kw = dialect.create_connect_args( |
| 479 | make_url("mysql+mysqldb://u:p@host/db?foo=true") |
| 480 | )[1] |
| 481 | eq_(kw["foo"], "true") |
| 482 | |
| 483 | @testing.only_on( |
| 484 | [ |
nothing calls this directly
no test coverage detected