()
| 161 | |
| 162 | @pytest.fixture |
| 163 | def mock_docker(): |
| 164 | with patch("harness.patch_grade.docker_ops") as m: |
| 165 | m.run.return_value = "pgrade" |
| 166 | m.commit.return_value = "patched:tmp" |
| 167 | yield m |
| 168 | |
| 169 | |
| 170 | def test_t0_fail_short_circuits(mock_docker): |
nothing calls this directly
no outgoing calls
no test coverage detected