Remove tests as it is a duplicate of test_end_of_song_with_single_and_repeat_starts_same

This commit is contained in:
Stein Magnus Jodal 2010-08-18 12:36:47 +02:00
parent 4cf041119b
commit a87f7f9381

View File

@ -663,14 +663,6 @@ class BasePlaybackControllerTest(object):
self.playback.on_end_of_track()
self.assert_(self.tracks[0] not in self.backend.current_playlist.tracks)
@populate_playlist
def test_end_of_track_with_single_and_repeat(self):
self.playback.single = True
self.playback.repeat = True
self.playback.play()
self.playback.on_end_of_track()
self.assertEqual(self.playback.current_track, self.tracks[1])
@populate_playlist
def test_end_of_track_with_random(self):
# FIXME feels very fragile