(self)
| 4939 | os.chdir(old_dir) |
| 4940 | |
| 4941 | def test_repr(self): |
| 4942 | entry = self.create_file_entry() |
| 4943 | self.assertEqual(repr(entry), "<DirEntry 'file.txt'>") |
| 4944 | |
| 4945 | def test_fspath_protocol(self): |
| 4946 | entry = self.create_file_entry() |
nothing calls this directly
no test coverage detected