Replace FIXME with test stub

This commit is contained in:
Thomas Adamcik 2010-04-26 23:46:48 +02:00
parent 2f4cea2339
commit f9bc9a44b1
2 changed files with 2 additions and 1 deletions

View File

@ -110,7 +110,6 @@ class GStreamerPlaybackController(BasePlaybackController):
class GStreamerStoredPlaylistsController(BaseStoredPlaylistsController):
def __init__(self, *args):
super(GStreamerStoredPlaylistsController, self).__init__(*args)
# FIXME need test that ensures that folder is created
self._folder = os.path.expanduser(settings.PLAYLIST_FOLDER)
def create(self, name):

View File

@ -96,6 +96,8 @@ class GStreamerBackendStoredPlaylistsControllerTest(BaseStoredPlaylistsControlle
def test_santitising_of_playlist_filenames(self):
raise SkipTest
def test_playlist_folder_is_createad(self):
raise SkipTest
if __name__ == '__main__':
unittest.main()