(self)
| 1039 | self._test_utime_current(set_time) |
| 1040 | |
| 1041 | def test_utime_nonexistent(self): |
| 1042 | now = time.time() |
| 1043 | filename = 'nonexistent' |
| 1044 | with self.assertRaises(FileNotFoundError) as cm: |
| 1045 | os.utime(filename, (now, now)) |
| 1046 | self.assertEqual(cm.exception.filename, filename) |
| 1047 | |
| 1048 | def get_file_system(self, path): |
| 1049 | if sys.platform == 'win32': |
nothing calls this directly
no test coverage detected