(self, item_in_db)
| 1264 | |
| 1265 | class TestUnicodePath(PytestItemHelper): |
| 1266 | def test_unicode_path(self, item_in_db): |
| 1267 | item_in_db.path = os.path.join( |
| 1268 | _common.RSRC, "unicode\u2019d.mp3".encode() |
| 1269 | ) |
| 1270 | # If there are any problems with unicode paths, we will raise |
| 1271 | # here and fail. |
| 1272 | item_in_db.read() |
| 1273 | item_in_db.write() |
| 1274 | |
| 1275 | |
| 1276 | class TestWrite(TestHelper): |