()
| 196 | |
| 197 | |
| 198 | def test_duplicate_texts_with_edit(): |
| 199 | module = FakeModule("mod", ["A", "X", "B"], stored_frs=["A", "A", "B"]) |
| 200 | changes = _detect_module_changes(module) |
| 201 | assert len(changes) == 1 |
| 202 | assert changes[0] == FunctionalityChange(module="mod", frid="2", change_type="edited") |
| 203 | |
| 204 | |
| 205 | # --- determine_partial_render_start --- |
nothing calls this directly
no test coverage detected