Skip another backend test that does not work with DummyOutput

This commit is contained in:
Stein Magnus Jodal 2010-08-24 01:04:43 +02:00
parent 64b760bf96
commit 9fe5874069

View File

@ -528,11 +528,12 @@ class BasePlaybackControllerTest(object):
self.assert_(wrapper.called)
@SkipTest # Blocks for 10ms and does not work with DummyOutput
@populate_playlist
def test_end_of_track_callback_gets_called(self):
self.playback.play()
result = self.playback.seek(self.tracks[0].length - 10)
self.assert_(result, 'Seek failed')
self.assertTrue(result, 'Seek failed')
message = self.core_queue.get(True, 1)
self.assertEqual('end_of_track', message['command'])