(
self, starting, update_with, expected, append
)
| 390 | ), |
| 391 | ) |
| 392 | def test_update_query_string( |
| 393 | self, starting, update_with, expected, append |
| 394 | ): |
| 395 | eq_( |
| 396 | url.make_url("drivername:///?%s" % starting).update_query_string( |
| 397 | update_with, append=append |
| 398 | ), |
| 399 | url.make_url("drivername:///?%s" % expected), |
| 400 | ) |
| 401 | |
| 402 | @testing.combinations("username", "host", "database", argnames="argname") |
| 403 | @testing.combinations((35.8), (True,), argnames="value") |
nothing calls this directly
no test coverage detected