(self)
| 636 | # Test attributes on return values from os.*stat* family. |
| 637 | class StatAttributeTests(unittest.TestCase): |
| 638 | def setUp(self): |
| 639 | self.fname = os_helper.TESTFN |
| 640 | self.addCleanup(os_helper.unlink, self.fname) |
| 641 | create_file(self.fname, b"ABC") |
| 642 | |
| 643 | def check_stat_attributes(self, fname): |
| 644 | result = os.stat(fname) |
nothing calls this directly
no test coverage detected