()
| 105 | |
| 106 | |
| 107 | def test_multiple_edits(): |
| 108 | module = FakeModule("mod", ["X", "Y", "Z"], stored_frs=["A", "B", "C"]) |
| 109 | changes = _detect_module_changes(module) |
| 110 | assert len(changes) == 3 |
| 111 | assert all(c.change_type == "edited" for c in changes) |
| 112 | |
| 113 | |
| 114 | # --- Additions --- |
nothing calls this directly
no test coverage detected