(conflict_state)
| 71 | |
| 72 | |
| 73 | def test_invalid_conflict_resolution(conflict_state): |
| 74 | a, b, status = conflict_state |
| 75 | |
| 76 | with pytest.raises(UserError) as excinfo: |
| 77 | metasync(a, b, status, keys=['foo'], conflict_resolution='foo') |
| 78 | |
| 79 | assert 'Invalid conflict resolution setting' in str(excinfo.value) |
| 80 | |
| 81 | |
| 82 | def test_warning_on_custom_conflict_commands(conflict_state, monkeypatch): |
nothing calls this directly
no test coverage detected