(self)
| 1111 | self.assertTrue(pair.writable()) |
| 1112 | |
| 1113 | def test_seekable(self): |
| 1114 | # BufferedRWPairs are never seekable, even if their readers and writers |
| 1115 | # are. |
| 1116 | pair = self.tp(self.MockRawIO(), self.MockRawIO()) |
| 1117 | self.assertFalse(pair.seekable()) |
| 1118 | |
| 1119 | # .flush() is delegated to the underlying writer object and has been |
| 1120 | # tested in the test_write method. |
nothing calls this directly
no test coverage detected