()
| 98 | |
| 99 | |
| 100 | def test_single_edit(): |
| 101 | module = FakeModule("mod", ["A modified", "B"], stored_frs=["A", "B"]) |
| 102 | changes = _detect_module_changes(module) |
| 103 | assert len(changes) == 1 |
| 104 | assert changes[0] == FunctionalityChange(module="mod", frid="1", change_type="edited") |
| 105 | |
| 106 | |
| 107 | def test_multiple_edits(): |
nothing calls this directly
no test coverage detected