Add basic test_created_playlist_is_persisted test

This commit is contained in:
Thomas Adamcik 2010-04-26 23:07:50 +02:00
parent 827d450211
commit 8af5b553a3

View File

@ -4,6 +4,7 @@ import urllib
from mopidy.models import Playlist, Track
from mopidy.backends.gstreamer import GStreamerBackend
from mopidy import settings
from tests.backends.base import *
@ -54,5 +55,11 @@ class GStreamerBackendStoredPlaylistsControllerTest(BaseStoredPlaylistsControlle
backend_class = GStreamerBackend
def test_created_playlist_is_persisted(self):
self.stored.create('test')
playlist = os.path.join(settings.PLAYLIST_FOLDER, 'test.m3u')
self.assert_(os.path.exists(playlist))
if __name__ == '__main__':
unittest.main()