(self, config)
| 1288 | ) |
| 1289 | |
| 1290 | def _sqlite_file_db(self, config): |
| 1291 | return against(config, "sqlite") and config.db.dialect._is_url_file_db( |
| 1292 | config.db.url |
| 1293 | ) |
| 1294 | |
| 1295 | def _sqlite_memory_db(self, config): |
| 1296 | return against( |
nothing calls this directly
no test coverage detected