(self)
| 30 | self.assertIsInstance(self.root, _WritablePath) |
| 31 | |
| 32 | def test_open_w(self): |
| 33 | p = self.root / 'fileA' |
| 34 | with vfsopen(p, 'w', encoding='utf-8') as f: |
| 35 | self.assertIsInstance(f, io.TextIOBase) |
| 36 | f.write('this is file A\n') |
| 37 | self.assertEqual(self.ground.readtext(p), 'this is file A\n') |
| 38 | |
| 39 | def test_open_w_buffering_error(self): |
| 40 | p = self.root / 'fileA' |
nothing calls this directly
no test coverage detected