(self)
| 143 | reader.read() |
| 144 | |
| 145 | def test_seek(self): |
| 146 | with open(self.filename, 'rb') as f: |
| 147 | reader = InterruptReader(f, self.transfer_coordinator) |
| 148 | # Ensure it can seek correctly |
| 149 | reader.seek(1) |
| 150 | self.assertEqual(reader.read(1), self.content[1:2]) |
| 151 | |
| 152 | def test_tell(self): |
| 153 | with open(self.filename, 'rb') as f: |
nothing calls this directly
no test coverage detected