(self)
| 45 | ) |
| 46 | |
| 47 | def test_mysql(self): |
| 48 | self.assertEqual( |
| 49 | to_async_url("mysql://user:pass@host/db"), |
| 50 | "mysql+aiomysql://user:pass@host/db", |
| 51 | ) |
| 52 | |
| 53 | def test_already_async(self): |
| 54 | url = "sqlite+aiosqlite:///path/to/db.sqlite" |
nothing calls this directly
no test coverage detected