()
| 356 | |
| 357 | |
| 358 | def test_changed_uids(): |
| 359 | a = MemoryStorage() |
| 360 | b = MemoryStorage() |
| 361 | href_a, etag_a = a.upload(Item('UID:A-ONE')) |
| 362 | href_b, etag_b = b.upload(Item('UID:B-ONE')) |
| 363 | status = {} |
| 364 | sync(a, b, status) |
| 365 | |
| 366 | a.update(href_a, Item('UID:A-TWO'), etag_a) |
| 367 | sync(a, b, status) |
| 368 | |
| 369 | |
| 370 | def test_both_readonly(): |
nothing calls this directly
no test coverage detected