(self, starting, update_with, expected, append)
| 337 | ), |
| 338 | ) |
| 339 | def test_update_query_dict(self, starting, update_with, expected, append): |
| 340 | eq_( |
| 341 | url.make_url("drivername:///?%s" % starting).update_query_dict( |
| 342 | update_with, append=append |
| 343 | ), |
| 344 | url.make_url("drivername:///?%s" % expected), |
| 345 | ) |
| 346 | |
| 347 | @testing.combinations( |
| 348 | "drivername://", |
nothing calls this directly
no test coverage detected