(self)
| 288 | graph.validate_consistency() |
| 289 | |
| 290 | def test_validate_consistency_no_error(self): |
| 291 | graph = MigrationGraph() |
| 292 | graph.add_node(("app_a", "0001"), None) |
| 293 | graph.add_node(("app_b", "0002"), None) |
| 294 | graph.add_dependency( |
| 295 | "app_a.0001", ("app_a", "0001"), ("app_b", "0002"), skip_validation=True |
| 296 | ) |
| 297 | graph.validate_consistency() |
| 298 | |
| 299 | def test_validate_consistency_dummy(self): |
| 300 | """ |
nothing calls this directly
no test coverage detected