()
| 75 | |
| 76 | |
| 77 | def test_empty_stored_all_added(): |
| 78 | module = FakeModule("mod", ["A", "B"], stored_frs=[]) |
| 79 | changes = _detect_module_changes(module) |
| 80 | assert len(changes) == 2 |
| 81 | assert all(c.change_type == "added" for c in changes) |
| 82 | |
| 83 | |
| 84 | # --- All removed --- |
nothing calls this directly
no test coverage detected