Simple case of uploading one partition.
()
| 36 | |
| 37 | |
| 38 | def test_simple(): |
| 39 | """Simple case of uploading one partition.""" |
| 40 | pool = make_pool(1, 1) |
| 41 | pool.put(FakeTarPartition(1)) |
| 42 | pool.join() |
| 43 | |
| 44 | |
| 45 | def test_not_enough_resources(): |
nothing calls this directly
no test coverage detected