diff --git a/test/test_library.py b/test/test_library.py index c5faa7f71..0b4be9fb8 100644 --- a/test/test_library.py +++ b/test/test_library.py @@ -1013,13 +1013,15 @@ class TemplateTest(_common.LibTestCase): self.album.store() self.assertEqual(self.i.evaluate_template('$foo'), 'baz') -class UnicodeReadWriteTest(_common.LibTestCase): + +class UnicodePathTest(_common.LibTestCase): def test_unicode_path(self): self.i.path = os.path.join(_common.RSRC, 'unicode’d.mp3') # if there are any problems with unicode paths, we will raise here and fail self.i.read() self.i.write() + class WriteTest(_common.LibTestCase): def test_write_nonexistant(self): self.i.path = '/path/does/not/exist'