(self)
| 33 | """Tests for URL dialect conversion.""" |
| 34 | |
| 35 | def test_sqlite(self): |
| 36 | self.assertEqual( |
| 37 | to_async_url("sqlite:///path/to/db.sqlite"), |
| 38 | "sqlite+aiosqlite:///path/to/db.sqlite", |
| 39 | ) |
| 40 | |
| 41 | def test_postgresql(self): |
| 42 | self.assertEqual( |
nothing calls this directly
no test coverage detected