Move load appends test to frontend where it belongs

This commit is contained in:
Thomas Adamcik 2010-04-09 08:36:09 +02:00
parent 9c8cab684c
commit 619ce7230d
2 changed files with 3 additions and 3 deletions

View File

@ -98,9 +98,6 @@ class BaseCurrentPlaylistControllerTest(object):
self.controller.load(Playlist())
self.assertEqual(self.controller.version, version+1)
def test_load_appends(self):
raise SkipTest
@populate_playlist
def test_load_preserves_playing_state(self):
tracks = self.controller.playlist.tracks

View File

@ -854,6 +854,9 @@ class StoredPlaylistsHandlerTest(unittest.TestCase):
result = self.h.handle_request(u'load "name"')
self.assert_(u'OK' in result)
def test_load_appends(self):
raise SkipTest
def test_playlistadd(self):
result = self.h.handle_request(
u'playlistadd "name" "file:///dev/urandom"')