(self)
| 1146 | |
| 1147 | class TestAdjustChunksize(unittest.TestCase): |
| 1148 | def setUp(self): |
| 1149 | self.adjuster = ChunksizeAdjuster() |
| 1150 | |
| 1151 | def test_valid_chunksize(self): |
| 1152 | chunksize = 7 * (1024**2) |
nothing calls this directly
no test coverage detected