()
| 51 | |
| 52 | |
| 53 | def test_identical_specs_no_changes(): |
| 54 | module = FakeModule("mod", ["A", "B", "C"], ["A", "B", "C"]) |
| 55 | changes = _detect_module_changes(module) |
| 56 | assert changes == [] |
| 57 | |
| 58 | |
| 59 | def test_empty_both_no_changes(): |
nothing calls this directly
no test coverage detected