(self)
| 4943 | self.assertEqual(repr(entry), "<DirEntry 'file.txt'>") |
| 4944 | |
| 4945 | def test_fspath_protocol(self): |
| 4946 | entry = self.create_file_entry() |
| 4947 | self.assertEqual(os.fspath(entry), os.path.join(self.path, 'file.txt')) |
| 4948 | |
| 4949 | def test_fspath_protocol_bytes(self): |
| 4950 | bytes_filename = os.fsencode('bytesfile.txt') |
nothing calls this directly
no test coverage detected