()
| 89 | |
| 90 | |
| 91 | def test_partial_sync_error(): |
| 92 | a = MemoryStorage() |
| 93 | b = MemoryStorage() |
| 94 | status = {} |
| 95 | |
| 96 | a.upload(Item('UID:0')) |
| 97 | b.read_only = True |
| 98 | |
| 99 | with pytest.raises(PartialSync): |
| 100 | sync(a, b, status, partial_sync='error') |
| 101 | |
| 102 | |
| 103 | def test_partial_sync_ignore(): |
nothing calls this directly
no test coverage detected