test create_connect_args scenarios including support for uri=True
(self, url, expected)
| 388 | ), |
| 389 | ) |
| 390 | def test_connect_args(self, url, expected): |
| 391 | """test create_connect_args scenarios including support for uri=True""" |
| 392 | |
| 393 | d = pysqlite_dialect.dialect() |
| 394 | url = make_url(url) |
| 395 | eq_(d.create_connect_args(url), expected) |
| 396 | |
| 397 | @testing.combinations( |
| 398 | ("no_persisted", "", "ignore"), |
nothing calls this directly
no test coverage detected