Syncing an unmounted path should raise KeyError with helpful message.
()
| 33 | |
| 34 | |
| 35 | async def test_sync_unmounted_path(): |
| 36 | """ |
| 37 | Syncing an unmounted path should raise KeyError with helpful message. |
| 38 | """ |
| 39 | with upytest.raises(KeyError): |
| 40 | await fs.sync("/nonexistent") |
| 41 | |
| 42 | |
| 43 | async def test_unmount_unmounted_path(): |