* morituri/image/toc.py:

* morituri/test/test_image_toc.py:
	* morituri/test/test_program_cdrdao.py:
	  After careful vetting, fix up the expected values after toc parsing.
	  Fix (untested) INDEX handling.  Fix handling of START.
This commit is contained in:
Thomas Vander Stichele
2009-05-05 22:40:26 +00:00
parent 9992fb267f
commit 049496a8b1
4 changed files with 38 additions and 13 deletions

View File

@@ -26,5 +26,5 @@ class ParseTestCase(unittest.TestCase):
for i, offset in enumerate(
[0, 13864, 31921, 48332, 61733, 80961,
100219, 116291, 136188, 157504, 175275]):
track = self._parser.toc.tracks[i]
track = self._parser.table.tracks[i]
self.assertEquals(track.getIndex(1).absolute, offset)