(self)
| 332 | return None |
| 333 | |
| 334 | async def fake_applied(self) -> list[MigrationKey]: |
| 335 | return [ |
| 336 | MigrationKey(app_label="app", name="0001_initial"), |
| 337 | MigrationKey(app_label="other", name="0001_initial"), |
| 338 | ] |
| 339 | |
| 340 | monkeypatch.setattr(cli_module.Tortoise, "init", fake_init) |
| 341 | monkeypatch.setattr(cli_module.MigrationRecorder, "applied_migrations", fake_applied) |
nothing calls this directly
no test coverage detected
searching dependent graphs…