(self)
| 550 | propagated properly""" |
| 551 | |
| 552 | def test_connect_query(self): |
| 553 | dbapi = MockDBAPI(foober="12", lala="18", fooz="somevalue") |
| 554 | e = create_engine( |
| 555 | "postgresql+psycopg2://scott:tiger@somehost/test?foobe" |
| 556 | "r=12&lala=18&fooz=somevalue", |
| 557 | module=dbapi, |
| 558 | _initialize=False, |
| 559 | ) |
| 560 | e.connect() |
| 561 | |
| 562 | def test_kwargs(self): |
| 563 | dbapi = MockDBAPI( |
nothing calls this directly
no test coverage detected