(self)
| 5219 | self.assertEqual(repr(entry), "<DirEntry 'file.txt'>") |
| 5220 | |
| 5221 | def test_fspath_protocol(self): |
| 5222 | entry = self.create_file_entry() |
| 5223 | self.assertEqual(os.fspath(entry), os.path.join(self.path, 'file.txt')) |
| 5224 | |
| 5225 | def test_fspath_protocol_bytes(self): |
| 5226 | bytes_filename = os.fsencode('bytesfile.txt') |
nothing calls this directly
no test coverage detected