Added special handling for title in emf

This commit is contained in:
Rudi Grinberg 2012-10-12 15:39:35 -04:00
parent d00c74fdbe
commit cefc5c99d9
3 changed files with 33 additions and 3 deletions

View file

@ -16,4 +16,10 @@ class TestMMP(unittest.TestCase):
n = Metadata(path)
self.assertEqual(n.extract(), m)
def test_recorded(self):
recorded_file = "./15:15:00-Untitled Show-256kbps.ogg"
m = global_reader.read_mutagen(recorded_file)
pp(m)
if __name__ == '__main__': unittest.main()