(self)
| 638 | # Test attributes on return values from os.*stat* family. |
| 639 | class StatAttributeTests(unittest.TestCase): |
| 640 | def setUp(self): |
| 641 | self.fname = os_helper.TESTFN |
| 642 | self.addCleanup(os_helper.unlink, self.fname) |
| 643 | create_file(self.fname, b"ABC") |
| 644 | |
| 645 | def check_timestamp_agreement(self, result, names): |
| 646 | # Make sure that the st_?time and st_?time_ns fields roughly agree |
nothing calls this directly
no test coverage detected