(self)
| 39 | ) |
| 40 | |
| 41 | def test_postgresql(self): |
| 42 | self.assertEqual( |
| 43 | to_async_url("postgresql://user:pass@host/db"), |
| 44 | "postgresql+asyncpg://user:pass@host/db", |
| 45 | ) |
| 46 | |
| 47 | def test_mysql(self): |
| 48 | self.assertEqual( |
nothing calls this directly
no test coverage detected