(self)
| 1208 | self.assertFalse(f._rolled) |
| 1209 | |
| 1210 | def test_is_iobase(self): |
| 1211 | # SpooledTemporaryFile should implement io.IOBase |
| 1212 | self.assertIsInstance(self.do_create(), io.IOBase) |
| 1213 | |
| 1214 | def test_iobase_interface(self): |
| 1215 | # SpooledTemporaryFile should implement the io.IOBase interface. |
nothing calls this directly
no test coverage detected