(self)
| 38 | self.assertEqual(tmpDir, self.outDir / "tmp") |
| 39 | |
| 40 | def test_write_setsWritten(self): |
| 41 | mapping, *_ = self.createMapping() |
| 42 | self.assertFalse(mapping.written) |
| 43 | mapping.write(b"data") |
| 44 | self.assertTrue(mapping.written) |
| 45 | |
| 46 | def test_finalize_removesUnwrittenFiles(self): |
| 47 | mapping, *_ = self.createMapping() |
nothing calls this directly
no test coverage detected