(self)
| 2302 | self.assertTrue(pair.writable()) |
| 2303 | |
| 2304 | def test_seekable(self): |
| 2305 | # BufferedRWPairs are never seekable, even if their readers and writers |
| 2306 | # are. |
| 2307 | pair = self.tp(self.MockRawIO(), self.MockRawIO()) |
| 2308 | self.assertFalse(pair.seekable()) |
| 2309 | |
| 2310 | # .flush() is delegated to the underlying writer object and has been |
| 2311 | # tested in the test_write method. |
nothing calls this directly
no test coverage detected