(self)
| 179 | |
| 180 | class TestUploadFilenameInputManager(BaseUploadInputManagerTest): |
| 181 | def setUp(self): |
| 182 | super().setUp() |
| 183 | self.upload_input_manager = UploadFilenameInputManager( |
| 184 | self.osutil, self.transfer_coordinator |
| 185 | ) |
| 186 | self.call_args = CallArgs( |
| 187 | fileobj=self.filename, subscribers=self.subscribers |
| 188 | ) |
| 189 | self.future = self.get_transfer_future(self.call_args) |
| 190 | |
| 191 | def test_is_compatible(self): |
| 192 | self.assertTrue( |
nothing calls this directly
no test coverage detected