Merge pull request #490 from cgtobi/develop

Add test case for scanning empty wav files.
This commit is contained in:
Stein Magnus Jodal 2013-08-06 09:45:06 -07:00
commit dbd88b0857
2 changed files with 4 additions and 0 deletions

Binary file not shown.

View File

@ -214,6 +214,10 @@ class ScannerTest(unittest.TestCase):
self.scan('scanner/example.log')
self.assert_(self.errors)
def test_empty_wav_file_is_ignored(self):
self.scan('scanner/empty.wav')
self.assert_(self.errors)
@unittest.SkipTest
def test_song_without_time_is_handeled(self):
pass